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