From a89bc473f6e3eaef9bd4d8966ae97b330b78b2e6 Mon Sep 17 00:00:00 2001 From: Michel Tomas Date: Wed, 1 Nov 2023 05:16:20 +0100 Subject: [PATCH] fix(self-hosted/web): add "useCredentials: true" to Vite PWA options (#3460) --- packages/hoppscotch-selfhost-web/vite.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/hoppscotch-selfhost-web/vite.config.ts b/packages/hoppscotch-selfhost-web/vite.config.ts index 604d22f82..fa8329dfa 100644 --- a/packages/hoppscotch-selfhost-web/vite.config.ts +++ b/packages/hoppscotch-selfhost-web/vite.config.ts @@ -147,6 +147,7 @@ export default defineConfig({ }, }), VitePWA({ + useCredentials: true, manifest: { name: APP_INFO.name, short_name: APP_INFO.name,