Skip to content

Commit

Permalink
fix(next): added eslint ignore to next config
Browse files Browse the repository at this point in the history
  • Loading branch information
kylescudder committed Dec 24, 2023
1 parent d4289ce commit 8b7f674
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
};

module.exports = nextConfig

0 comments on commit 8b7f674

Please sign in to comment.