20 lines
738 B
TypeScript
20 lines
738 B
TypeScript
// This file is the browser's entry point for the JS bundle
|
|
|
|
import { mount, unmount } from "svelte";
|
|
import App from "/src/App.svelte";
|
|
import { registerServiceWorker } from "/src/utility-functions/service-worker";
|
|
|
|
// Register the service worker, except in dev mode and native (CEF) builds
|
|
if (!import.meta.env.DEV && import.meta.env.MODE !== "native" && "serviceWorker" in navigator) {
|
|
registerServiceWorker();
|
|
}
|
|
|
|
document.body.setAttribute("data-app-container", "");
|
|
|
|
const app = mount(App, { target: document.body });
|
|
|
|
// Ensure the old component tree is properly torn down during HMR so all onDestroy hooks fire (which clean up IO managers, state providers, etc.)
|
|
import.meta.hot?.dispose(() => unmount(app));
|
|
|
|
export default app;
|