From 36ca4e199665e9456f8467316a589a4538227df2 Mon Sep 17 00:00:00 2001 From: jtricerolph Date: Wed, 29 Jul 2026 13:47:08 +0000 Subject: [PATCH] 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. --- 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 028730d..8e83678 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -12,7 +12,7 @@ export default defineConfig({ name: 'HK Planner', short_name: 'HK Planner', start_url: '/hk-planner/', - scope: '/', + scope: '/hk-planner/', display: 'standalone', theme_color: '#2d6a4f', background_color: '#2d6a4f',