Skip to content

Commit 9000149

Browse files
committed
revert
1 parent c8aba0a commit 9000149

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

playgrounds/sandbox/ssr-dev.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ polka()
2323
const template = fs.readFileSync(path.resolve(__dirname, 'index.html'), 'utf-8');
2424
const transformed_template = await vite.transformIndexHtml(req.url, template);
2525
const { default: App } = await vite.ssrLoadModule('/src/App.svelte');
26-
const { head, body } = render(App, {
27-
idPrefix: 'hello'
28-
});
26+
const { head, body } = render(App);
2927

3028
const html = transformed_template
3129
.replace(`<!--ssr-head-->`, head)

0 commit comments

Comments
 (0)