Files
doing-it-website/next.config.js
2025-12-05 01:01:04 +01:00

12 lines
183 B
JavaScript

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