ant-website/next.config.js
2025-05-24 19:03:33 +05:30

19 lines
419 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
}
module.exports = nextConfig
module.exports = {
eslint: {
ignoreDuringBuilds: true, // This allows the build to pass even with ESLint warnings
},
images: {
domains: [
'images.unsplash.com',
'everydayseries.io',
'flowbite.s3.amazonaws.com',
'localhost' // For local development
],
},
};