Skip to content

Commit bebdaa1

Browse files
Use turbopack for builds 🔥
1 parent 49c2ddf commit bebdaa1

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

next.config.mjs

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
/** @type {import('next').NextConfig} */
2-
import { i18n } from './next-i18next.config.mjs';
3-
4-
const nextConfig = {};
2+
const nextConfig = {
3+
typescript: {
4+
ignoreBuildErrors: true,
5+
},
6+
eslint: {
7+
ignoreDuringBuilds: true,
8+
},
9+
experimental: {
10+
turbo: {
11+
useSwcCss: true,
12+
treeShaking: true,
13+
}
14+
}
15+
};
516

617
export default nextConfig;

0 commit comments

Comments
 (0)