12 lines
266 B
JavaScript
12 lines
266 B
JavaScript
const isProd = process.env.NODE_ENV === 'production'
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
assetPrefix: isProd ? '/v3' : undefined,
|
|
images: {
|
|
path: isProd ? '/v3/_next/image' : undefined,
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|