1
0
mirror of synced 2025-12-19 09:57:42 -05:00

Bump next from 15.4.7 to 16.0.1 (#58242)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kevin Heis <heiskr@users.noreply.github.com>
This commit is contained in:
dependabot[bot]
2025-11-03 15:58:59 +00:00
committed by GitHub
parent 5770366ade
commit 74c18cadd0
3 changed files with 165 additions and 153 deletions

View File

@@ -20,9 +20,7 @@ const config: NextConfig = {
typescript: {
ignoreBuildErrors: true,
},
eslint: {
ignoreDuringBuilds: true,
},
i18n: {
locales: languageKeys,
defaultLocale: 'en',
@@ -49,6 +47,10 @@ const config: NextConfig = {
}
})
},
// Turbopack is the default bundler in Next.js 16
// Keep webpack config for now to support both bundlers
turbopack: {},
webpack: (webpackConfig) => {
webpackConfig.experiments = webpackConfig.experiments || {}
webpackConfig.experiments.topLevelAwait = true