13 lines
267 B
TypeScript
13 lines
267 B
TypeScript
import type { NextConfig } from 'next'
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
...(process.env.NODE_ENV === 'production' && {
|
|
output: 'export',
|
|
images: { unoptimized: true },
|
|
trailingSlash: true,
|
|
}),
|
|
}
|
|
|
|
export default nextConfig
|