Skip to content

Commit

Permalink
Fix typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
padmaia committed Mar 13, 2023
1 parent 956cd7d commit 3cef1d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/next/src/cli/next-dev.ts
Expand Up @@ -327,7 +327,7 @@ const nextDev: CliCommand = async (argv) => {
...Object.keys(rawNextConfig).filter((key) =>
checkUnsupportedCustomConfig(key, rawNextConfig, defaultConfig)
),
...Object.keys(rawNextConfig.experimental)
...Object.keys(rawNextConfig.experimental ?? [])
.filter((key) =>
checkUnsupportedCustomConfig(
key,
Expand Down

0 comments on commit 3cef1d3

Please sign in to comment.