How to Remove Eslint Errors in Nextjs
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;
E...
vpnwan.hashnode.dev1 min read