Enhance PWA manifest configuration and update dependencies:

- Add custom manifest properties (`id`, `display`, `start_url`, `scope`, `orientation`, `launch_handler`).
- Include `@bubblewrap/cli` dependency for improved PWA tooling integrations in `package-lock.json`.
This commit is contained in:
Jeppe Bundgaard
2025-07-30 10:23:31 +02:00
parent 1b2d0529e4
commit 2fb538d207
4 changed files with 2628 additions and 38 deletions
+9 -1
View File
@@ -43,7 +43,15 @@ export default defineConfig({
sizes: '512x512',
type: 'image/png'
}
]
],
id: 'pleno-pwa-test',
display: 'standalone',
start_url: './',
scope: './',
orientation: 'portrait',
launch_handler: {
client_mode: 'navigate-existing',
}
}
}),
],