1. Open Nextjs Project
2. Find next.config.mjs
3. Add the Following Code in You're next.config
/** @type {import('next').NextConfig} */
const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
};
export default nextConfig;
Errors Gone ๐....
ย