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:12 +00:00
parent 83dbb1d85a
commit 5af0863ab7

View file

@ -12,7 +12,7 @@ export default defineConfig({
name: 'Rate Monitor', name: 'Rate Monitor',
short_name: 'Rates', short_name: 'Rates',
start_url: '/rates/', start_url: '/rates/',
scope: '/', scope: '/rates/',
display: 'standalone', display: 'standalone',
theme_color: '#7b4f00', theme_color: '#7b4f00',
background_color: '#7b4f00', background_color: '#7b4f00',