mirror of
https://github.com/MercuryWorkshop/adrift.git
synced 2025-05-13 14:20:01 -04:00
10 lines
216 B
TypeScript
10 lines
216 B
TypeScript
|
|
import App from "./App.svelte";
|
|
const app = new App({
|
|
target: document.getElementById("app")
|
|
});
|
|
|
|
if (!import.meta.env.VITE_ADRIFT_SINGLEFILE) {
|
|
navigator.serviceWorker.register("/sw.js");
|
|
}
|
|
export default app;
|