8 lines
138 B
JavaScript
8 lines
138 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'export',
|
|
reactStrictMode: true,
|
|
}
|
|
|
|
module.exports = nextConfig
|