Namit Singh Nirwanvpnwan.hashnode.devยทMay 21, 2024How to Remove Eslint Errors in Nextjs1. 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...eslint configAdd a thoughtful commentNo comments yetBe the first to start the conversation.