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