14 lines
392 B
JavaScript
14 lines
392 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
images: { unoptimized: true },
|
|
...(process.env.NODE_ENV === 'production' && { output: 'export' }),
|
|
...(process.env.NEXT_PUBLIC_BASE_PATH && {
|
|
basePath: process.env.NEXT_PUBLIC_BASE_PATH,
|
|
assetPrefix: process.env.NEXT_PUBLIC_BASE_PATH,
|
|
}),
|
|
};
|
|
|
|
export default nextConfig;
|