From c5de8f324274183db9a0488179794b6ad22e4f86 Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Mon, 24 Nov 2025 00:07:03 +0900 Subject: [PATCH] FEAT(config): add basepath for /jovies - Set basePath to '/jovies' for proper path-based routing - Set assetPrefix to '/jovies' for static asset loading - This allows the app to work correctly under /jovies path --- services/nextjs/next.config.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/nextjs/next.config.mjs b/services/nextjs/next.config.mjs index e25a6a2..3950223 100644 --- a/services/nextjs/next.config.mjs +++ b/services/nextjs/next.config.mjs @@ -1,6 +1,8 @@ /** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', + basePath: '/jovies', + assetPrefix: '/jovies', }; export default nextConfig;