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:47:15 +00:00
parent 1efcc941bb
commit 51b6142651

View file

@ -12,7 +12,7 @@ export default defineConfig({
name: 'Reports', name: 'Reports',
short_name: 'Reports', short_name: 'Reports',
start_url: '/reports/', start_url: '/reports/',
scope: '/', scope: '/reports/',
display: 'standalone', display: 'standalone',
theme_color: '#1d4ed8', theme_color: '#1d4ed8',
background_color: '#1d4ed8', background_color: '#1d4ed8',