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
04f8c9f45c
commit
b40f0d078c
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ export default defineConfig({
|
||||||
name: 'Noticeboard',
|
name: 'Noticeboard',
|
||||||
short_name: 'Notices',
|
short_name: 'Notices',
|
||||||
start_url: '/notices/',
|
start_url: '/notices/',
|
||||||
scope: '/',
|
scope: '/notices/',
|
||||||
display: 'standalone',
|
display: 'standalone',
|
||||||
theme_color: '#1e3a5f',
|
theme_color: '#1e3a5f',
|
||||||
background_color: '#1e3a5f',
|
background_color: '#1e3a5f',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue