redThread / client /next.config.mjs
3v324v23's picture
Fix build error: Use Next.js static export (out folder) instead of dist
2963d39
raw
history blame contribute delete
371 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
reactStrictMode: true,
images: {
unoptimized: true,
},
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
};
export default nextConfig;