Skip to content

Commit e549829

Browse files
committed
revert
1 parent 396575d commit e549829

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

playgrounds/sandbox/index.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
const render = root.firstChild?.nextSibling ? hydrate : mount;
1919

2020
const component = render(App, {
21-
target: document.getElementById('root'),
22-
uidPrefix: 'myPrefix'
21+
target: document.getElementById('root')
2322
});
2423
</script>
2524
</body>

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-
uidPrefix: 'myPrefix'
28-
});
26+
const { head, body } = render(App);
2927

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

0 commit comments

Comments
 (0)