12 lines
197 B
JavaScript
12 lines
197 B
JavaScript
|
|
/** @type {import('next').NextConfig} */
|
||
|
|
const nextConfig = {
|
||
|
|
reactStrictMode: true,
|
||
|
|
swcMinify: true,
|
||
|
|
images: {
|
||
|
|
unoptimized: true,
|
||
|
|
},
|
||
|
|
output: "export",
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = nextConfig
|