mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* clean up `package.json` files * chore(ts): make sure `next-auth/next` does not conflict with `next` * simplify `turbo.json` * fix: apply suggestion * simplify doc dev command * ignore upstash redis again * ignore mikro orm for now * chore: dev command * update lock file * update css path for dev only * Update apps/dev/package.json Co-authored-by: Thang Vu <thvu@hey.com>
9 lines
220 B
JavaScript
9 lines
220 B
JavaScript
/** @type {import("next").NextConfig} */
|
|
module.exports = {
|
|
webpack(config) {
|
|
config.experiments = { ...config.experiments, topLevelAwait: true }
|
|
return config
|
|
},
|
|
typescript: { ignoreBuildErrors: true },
|
|
}
|