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
fcc1ab9e51
commit
69a5e8ad36
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ export default defineConfig({
|
||||||
name: 'Wage Costs',
|
name: 'Wage Costs',
|
||||||
short_name: 'Wages',
|
short_name: 'Wages',
|
||||||
start_url: '/wages/',
|
start_url: '/wages/',
|
||||||
scope: '/',
|
scope: '/wages/',
|
||||||
display: 'standalone',
|
display: 'standalone',
|
||||||
theme_color: '#065f46',
|
theme_color: '#065f46',
|
||||||
background_color: '#065f46',
|
background_color: '#065f46',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue