Compare commits
3 commits
main
...
maybeitwor
Author | SHA1 | Date | |
---|---|---|---|
2779333758 | |||
6aea39b08c | |||
631c9b75f9 |
3 changed files with 5 additions and 1 deletions
|
@ -23,4 +23,4 @@ pipeline:
|
|||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
|
||||
branches: main
|
||||
branches: maybeitworked
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
import { onMount } from 'svelte'
|
||||
import BottomAppBar from '$lib/components/BottomAppBar.svelte';
|
||||
$: webManifestLink = pwaInfo ? pwaInfo.webManifest.linkTag : ''
|
||||
export const prerender = true;
|
||||
|
||||
onMount(async () => {
|
||||
if (pwaInfo) {
|
||||
|
|
|
@ -5,6 +5,9 @@ import { vitePreprocess } from '@sveltejs/kit/vite';
|
|||
const config = {
|
||||
preprocess: vitePreprocess(),
|
||||
kit: {
|
||||
serviceWorker: {
|
||||
register: false,
|
||||
},
|
||||
adapter: adapter({
|
||||
fallback: null,
|
||||
precompress: true,
|
||||
|
|
Loading…
Reference in a new issue