12 lines
291 B
TypeScript
12 lines
291 B
TypeScript
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;
|