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:
parent
b1aa3bc0c7
commit
ad332919ff
1 changed files with 1 additions and 1 deletions
|
|
@ -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',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue