Skip to content

Commit dc74aa5

Browse files
committed
[chore] ignore typescript & eslint errors while building
1 parent eb0d354 commit dc74aa5

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

next.config.mjs

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
/** @type {import('next').NextConfig} */
2-
const nextConfig = {};
2+
const nextConfig = {
3+
eslint: {
4+
ignoreDuringBuilds: true
5+
},
6+
typescript: {
7+
ignoreBuildErrors: true
8+
}
9+
};
310

411
export default nextConfig;

0 commit comments

Comments
 (0)