CoolFace
Apppublic

kunjasd/anycoder-36bad3f9

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
next.config.js13 linesDownload Raw Back to root
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