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;