diff --git a/src/app.html b/src/app.html index 75191eda..d17222a3 100644 --- a/src/app.html +++ b/src/app.html @@ -2,7 +2,10 @@ - + + + + %sveltekit.head% diff --git a/src/static/android-chrome-192x192.png b/src/static/android-chrome-192x192.png new file mode 100644 index 00000000..4f291ba2 Binary files /dev/null and b/src/static/android-chrome-192x192.png differ diff --git a/src/static/android-chrome-512x512.png b/src/static/android-chrome-512x512.png new file mode 100644 index 00000000..39740281 Binary files /dev/null and b/src/static/android-chrome-512x512.png differ diff --git a/src/static/apple-touch-icon.png b/src/static/apple-touch-icon.png new file mode 100644 index 00000000..1a762558 Binary files /dev/null and b/src/static/apple-touch-icon.png differ diff --git a/src/static/favicon-16x16.png b/src/static/favicon-16x16.png new file mode 100644 index 00000000..e72ada65 Binary files /dev/null and b/src/static/favicon-16x16.png differ diff --git a/src/static/favicon-32x32.png b/src/static/favicon-32x32.png new file mode 100644 index 00000000..899de074 Binary files /dev/null and b/src/static/favicon-32x32.png differ diff --git a/src/static/site.webmanifest b/src/static/site.webmanifest new file mode 100644 index 00000000..52a2fe3f --- /dev/null +++ b/src/static/site.webmanifest @@ -0,0 +1,11 @@ +{ + "name": "", + "short_name": "", + "icons": [ + { "src": "/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, + { "src": "/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/svelte.config.js b/svelte.config.js index acf72b2a..662c5756 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -6,6 +6,9 @@ const config = { kit: { // https://svelte.dev/docs/kit/adapter-node adapter: adapter(), + files: { + assets: 'src/static' + }, alias: { $components: './src/components', $config: './src/config',