We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49c2ddf commit bebdaa1Copy full SHA for bebdaa1
next.config.mjs
@@ -1,6 +1,17 @@
1
/** @type {import('next').NextConfig} */
2
-import { i18n } from './next-i18next.config.mjs';
3
-
4
-const nextConfig = {};
+const nextConfig = {
+ typescript: {
+ ignoreBuildErrors: true,
5
+ },
6
+ eslint: {
7
+ ignoreDuringBuilds: true,
8
9
+ experimental: {
10
+ turbo: {
11
+ useSwcCss: true,
12
+ treeShaking: true,
13
+ }
14
15
+};
16
17
export default nextConfig;
0 commit comments