Files
frontend/next.config.mjs
Amirhossein Mahmoodi 2a4359ff24 update
2024-07-10 14:14:09 +03:30

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;