12 lines
242 B
TypeScript
12 lines
242 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
...(process.env.NODE_ENV === 'production' && {
|
|
output: 'export',
|
|
images: { unoptimized: true },
|
|
trailingSlash: true,
|
|
}),
|
|
};
|
|
|
|
export default nextConfig;
|