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:18 +00:00
parent 2dbd490c1c
commit 331d15ac88

View file

@ -12,7 +12,7 @@ export default defineConfig({
name: 'Room Planner', name: 'Room Planner',
short_name: 'Rooms', short_name: 'Rooms',
start_url: '/room-planner/', start_url: '/room-planner/',
scope: '/', scope: '/room-planner/',
display: 'standalone', display: 'standalone',
theme_color: '#1a5276', theme_color: '#1a5276',
background_color: '#1a5276', background_color: '#1a5276',