kunjasd/anycoder-36bad3f9
0
1/** @type {import('next').NextConfig} */2const nextConfig = {3 reactStrictMode: true,4 swcMinify: true,5 images: {6 domains: ['localhost', 'res.cloudinary.com'],7 },8 experimental: {9 appDir: false,10 },11}12 13module.exports = nextConfig