Scope PWA manifest to app's own path instead of origin root

Every installed PWA claimed scope "/", so Android link-capturing routed
navigation for any app on the shared origin into whichever PWA had it.
This commit is contained in:
jtricerolph 2026-07-29 13:46:58 +00:00
parent 4cce6507bc
commit 056b4d6e80

View file

@ -15,7 +15,7 @@ export default defineConfig({
name: 'Calendar',
short_name: 'Calendar',
start_url: '/calendar/',
scope: '/',
scope: '/calendar/',
display: 'standalone',
theme_color: '#c9a84c',
background_color: '#c9a84c',