7 lines
135 B
JavaScript
7 lines
135 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
output: 'export'
|
|
}
|
|
|
|
export default nextConfig
|