mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* fix labeler * try fixing test runs in GitHub Actions * pass flags to test command * test version pr * move versoin-pr action * remove --dry-run flag * re-enable testing, re-add semantic release for now * add docs * use `yarn.lock` and different docs port * simplify dev app config * fix coverage report * fix provider source links * fix more links
17 lines
250 B
JavaScript
17 lines
250 B
JavaScript
module.exports = {
|
|
webpack(config) {
|
|
config.experiments = {
|
|
...config.experiments,
|
|
topLevelAwait: true,
|
|
}
|
|
|
|
return config
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
experimental: {
|
|
externalDir: true,
|
|
},
|
|
}
|