This commit is contained in:
2026-06-24 14:07:11 +02:00
commit cc4de1d450
296 changed files with 51110 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
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)