Compare commits

..

2 commits

Author SHA1 Message Date
825a2e2f6a Add configurations for service worker
All checks were successful
ci/woodpecker/push/build Pipeline was successful
2023-07-18 18:30:12 +02:00
e50ff329c3 Update packages 2023-07-18 18:26:39 +02:00
7 changed files with 38 additions and 2237 deletions

View file

@ -16,6 +16,7 @@
"@sveltejs/kit": "^1.22.3", "@sveltejs/kit": "^1.22.3",
"@typescript-eslint/eslint-plugin": "^6.1.0", "@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0", "@typescript-eslint/parser": "^6.1.0",
"@vite-pwa/sveltekit": "^0.2.5",
"eslint": "^8.45.0", "eslint": "^8.45.0",
"eslint-config-prettier": "^8.5.0", "eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte": "^2.30.0", "eslint-plugin-svelte": "^2.30.0",
@ -25,8 +26,7 @@
"svelte-check": "^3.4.6", "svelte-check": "^3.4.6",
"tslib": "^2.4.1", "tslib": "^2.4.1",
"typescript": "^5.0.0", "typescript": "^5.0.0",
"vite": "^4.4.4", "vite": "^4.4.4"
"vite-plugin-pwa": "^0.16.4"
}, },
"type": "module", "type": "module",
"dependencies": { "dependencies": {

View file

@ -35,7 +35,6 @@
string += `Latitude : ${crd.latitude}`; string += `Latitude : ${crd.latitude}`;
string += `Longitude: ${crd.longitude}`; string += `Longitude: ${crd.longitude}`;
string += `More or less ${crd.accuracy} meters.`; string += `More or less ${crd.accuracy} meters.`;
} }
function error(err) { function error(err) {

View file

@ -1,11 +1,19 @@
<script> <script>
// import { pwaInfo } from 'virtual:pwa-info';
import BottomAppBar from '$lib/components/BottomAppBar.svelte'; import BottomAppBar from '$lib/components/BottomAppBar.svelte';
// $: webManifestLink = pwaInfo ? pwaInfo.webManifest.linkTag : ''
</script> </script>
<slot></slot> <slot></slot>
<footer> <footer>
<BottomAppBar /> <BottomAppBar />
</footer> </footer>
<!--
<svelte:head>
{@html webManifestLink}
</svelte:head>
-->
<style> <style>
footer { footer {

0
frontend/src/sw.ts Normal file
View file

View file

@ -7,6 +7,12 @@ const config = {
// for more information about preprocessors // for more information about preprocessors
preprocess: vitePreprocess(), preprocess: vitePreprocess(),
kit: { kit: {
files: {
serviceWorker: 'src/sw.ts',
},
serviceWorker: {
register: false
},
adapter: adapter({ adapter: adapter({
precompress: false, precompress: false,
}), }),

View file

@ -1,9 +1,10 @@
import { sveltekit } from "@sveltejs/kit/vite"; import { sveltekit } from "@sveltejs/kit/vite";
import adapter from "@sveltejs/adapter-node"; import adapter from "@sveltejs/adapter-node";
import { VitePWA } from 'vite-plugin-pwa';
const config = { const config = {
plugins: [sveltekit(), VitePWA({ registerType: 'autoUpdate' })], plugins: [
sveltekit(),
],
test: { test: {
include: ["src/**/*.{test,spec}.{js,ts}"], include: ["src/**/*.{test,spec}.{js,ts}"],
}, },

File diff suppressed because it is too large Load diff