Published on

Ignoring Eslint Checks in Next.js Deployment

Authors

If you're working on side project/blog and don't really want to bother about Eslint or fixing them then here is how to do it in Next.js

In your next.config.js set ignoreDuringBuilds as true.

module.exports = {
  eslint: {
    ignoreDuringBuilds: true,
  }
}

And that will take care of errors during build. And you can say goodbye to your lint errors during build.

Happy Eslint free-deployments!