import type {NextConfig} from "next"; const isProd = process.env.NODE_ENV === 'production'; const nextConfig: NextConfig = { output: 'standalone', basePath: isProd ? '/lawfirm-demos/demo1' : '', assetPrefix: isProd ? '/lawfirm-demos/demo1' : '', }; export default nextConfig;