You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
triangles.fun/src/main.js

11 lines
209 B

import App from "./Components/App.svelte"
const app = new App({
target: document.body,
})
if ("serviceWorker" in navigator) {
navigator.serviceWorker.register("/service-worker.js")
}
export default app