From c0dc4ed296439ce26d80c9fd8a9f64c512d8f2ff Mon Sep 17 00:00:00 2001 From: Thatsaphorn Atchariyaphap Date: Sat, 7 Jun 2025 21:58:07 +0200 Subject: [PATCH] Disable basePath and assetPrefix configuration --- lawfirm-demos/demo-1/next.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lawfirm-demos/demo-1/next.config.ts b/lawfirm-demos/demo-1/next.config.ts index 587b7df..e178366 100644 --- a/lawfirm-demos/demo-1/next.config.ts +++ b/lawfirm-demos/demo-1/next.config.ts @@ -1,11 +1,11 @@ import type {NextConfig} from "next"; -const isProd = process.env.NODE_ENV === 'production'; +// const isProd = process.env.NODE_ENV === 'production'; const nextConfig: NextConfig = { output: 'standalone', - basePath: isProd ? '/lawfirm-demos/demo1' : '', - assetPrefix: isProd ? '/lawfirm-demos/demo1' : '', + // basePath: isProd ? '/lawfirm-demos/demo1' : '', + // assetPrefix: isProd ? '/lawfirm-demos/demo1' : '', }; export default nextConfig;