Fix PWA manifest scope to / per install-architecture doc
Scope was set to the app's own base path, which breaks the installed PWA out of standalone mode into a regular browser tab on any same-origin navigation outside that path (e.g. the auth redirect). scope: "/" keeps navigation inside the installed app's window. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
parent
cae0f48d79
commit
e085fd3e88
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ export default defineConfig({
|
|||
name: 'HK Planner',
|
||||
short_name: 'HK Planner',
|
||||
start_url: '/hk-planner/',
|
||||
scope: '/hk-planner/',
|
||||
scope: '/',
|
||||
display: 'standalone',
|
||||
theme_color: '#2d6a4f',
|
||||
background_color: '#2d6a4f',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue