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:20 +00:00
parent b1aa3bc0c7
commit ad332919ff

View file

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