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

12 lines
209 B

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