From 56da4c72b228ca9af2cac661730269c65232115f Mon Sep 17 00:00:00 2001 From: jtricerolph Date: Fri, 24 Jul 2026 17:06:47 +0000 Subject: [PATCH] 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 --- frontend/vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index c36c983..3699e49 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -12,7 +12,7 @@ export default defineConfig({ name: 'Noticeboard', short_name: 'Notices', start_url: '/notices/', - scope: '/notices/', + scope: '/', display: 'standalone', theme_color: '#1e3a5f', background_color: '#1e3a5f',