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 5770366 commit 74c18caCopy full SHA for 74c18ca
next.config.ts
@@ -20,9 +20,7 @@ const config: NextConfig = {
20
typescript: {
21
ignoreBuildErrors: true,
22
},
23
- eslint: {
24
- ignoreDuringBuilds: true,
25
- },
+
26
i18n: {
27
locales: languageKeys,
28
defaultLocale: 'en',
@@ -49,6 +47,10 @@ const config: NextConfig = {
49
47
}
50
48
})
51
+ // Turbopack is the default bundler in Next.js 16
+ // Keep webpack config for now to support both bundlers
52
+ turbopack: {},
53
54
webpack: (webpackConfig) => {
55
webpackConfig.experiments = webpackConfig.experiments || {}
56
webpackConfig.experiments.topLevelAwait = true
0 commit comments