handspew / next.config.mjs
Tina Tarighian
config
6044c4d
raw
history blame contribute delete
210 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'standalone',
images: {
domains: ['localhost'],
unoptimized: true,
},
};
export default nextConfig;