Files
comroots-frontend/next.config.js
T
2026-06-24 14:07:11 +02:00

24 lines
464 B
JavaScript

require('dotenv').config({
path: './.env.local'
})
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
})
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
images: {
domains: [process.env.NEXT_PUBLIC_S3_HOSTNAME]
},
eslint: {
ignoreDuringBuilds: true
},
typescript: {
ignoreBuildErrors: true
}
}
module.exports = withBundleAnalyzer(nextConfig)