Files
archived-next-auth/apps/dev/nextjs-v4/next.config.js
2023-04-15 17:02:46 +01:00

10 lines
254 B
JavaScript

/** @type {import("next").NextConfig} */
module.exports = {
webpack(config) {
config.experiments = { ...config.experiments, topLevelAwait: true }
return config
},
experimental: { appDir: true },
typescript: { ignoreBuildErrors: true },
}