chrishaulmark-website/next.config.js
2024-12-01 20:08:38 -06:00

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