Compare commits
2 Commits
0b271bc352
...
5cecb98484
| Author | SHA1 | Date |
|---|---|---|
|
|
5cecb98484 | 2 weeks ago |
|
|
d4b7683147 | 2 weeks ago |
@ -1,9 +1,13 @@
|
||||
import { mount } from 'svelte'
|
||||
import './app.css'
|
||||
import App from './App.svelte'
|
||||
|
||||
const app = mount(App, {
|
||||
target: document.getElementById('app'),
|
||||
})
|
||||
// Only load and mount the app in a real browser (document + mount available).
|
||||
// Avoids "mount() is not available on the server" when the bundle runs in SSR/workers.
|
||||
let app = null
|
||||
const target = typeof document !== 'undefined' && document.getElementById('app')
|
||||
if (target) {
|
||||
const { mount } = await import('svelte')
|
||||
const { default: App } = await import('./App.svelte')
|
||||
app = mount(App, { target })
|
||||
}
|
||||
|
||||
export default app
|
||||
|
||||
Loading…
Reference in new issue