From 8da76c1639e4e5ccfc283f5bd840842816e9664c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 21:58:21 +0000 Subject: [PATCH 1/3] Initial plan From 9529b1f72af35cd3a2e7492e04c02623ca11f015 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 22:01:10 +0000 Subject: [PATCH 2/3] Fix GitHub Pages deployment with correct base URL configuration Co-authored-by: kehwar <45218102+kehwar@users.noreply.github.com> --- nuxt.config.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 3ed3dfb..4e0ff3d 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -13,6 +13,8 @@ export default defineNuxtConfig({ ssr: false, // Static generation for PWA app: { + baseURL: process.env.NODE_ENV === 'production' ? '/wallet/' : '/', + buildAssetsDir: '_nuxt/', head: { htmlAttrs: { lang: 'en' @@ -35,7 +37,7 @@ export default defineNuxtConfig({ theme_color: '#ffffff', background_color: '#ffffff', display: 'standalone', - start_url: '/', + start_url: process.env.NODE_ENV === 'production' ? '/wallet/' : '/', icons: [ { src: '/icon-192x192.png', @@ -50,7 +52,7 @@ export default defineNuxtConfig({ ] }, workbox: { - navigateFallback: '/', + navigateFallback: process.env.NODE_ENV === 'production' ? '/wallet/' : '/', globPatterns: ['**/*.{js,css,html,png,svg,ico}'], cleanupOutdatedCaches: true, runtimeCaching: [ From f00c1f12849132c8c48cb27a4498af6a532d0e15 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 22:01:54 +0000 Subject: [PATCH 3/3] Remove redundant buildAssetsDir configuration (uses default) Co-authored-by: kehwar <45218102+kehwar@users.noreply.github.com> --- nuxt.config.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 4e0ff3d..101cb6b 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -14,7 +14,6 @@ export default defineNuxtConfig({ app: { baseURL: process.env.NODE_ENV === 'production' ? '/wallet/' : '/', - buildAssetsDir: '_nuxt/', head: { htmlAttrs: { lang: 'en'