We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdc747d commit 9adf6c3Copy full SHA for 9adf6c3
1 file changed
next.config.js
@@ -1,10 +1,13 @@
1
/**
2
- * Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially useful
3
- * for Docker builds.
+ * Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation.
+ * This is especially useful for Docker builds.
4
*/
5
import "./src/env.js";
6
7
/** @type {import("next").NextConfig} */
8
-const config = {};
+const config = {
9
+ eslint: { ignoreDuringBuilds: true },
10
+ typescript: { ignoreBuildErrors: true },
11
+};
12
13
export default config;
0 commit comments