Skip to content

Commit

Permalink
Fix: Use boolean instead of false for experimental logging config (
Browse files Browse the repository at this point in the history
…#56110)

This PR changes the type for the config `experimental.logging.fullURL` from `false` to `boolean`, i tested it and this config can accept both true and false and will work as expected, it is just the types that are wrong.
  • Loading branch information
Fredkiss3 committed Sep 27, 2023
1 parent ad63eff commit 72cc940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/next/src/server/config-shared.ts
Expand Up @@ -165,7 +165,7 @@ export interface ExperimentalConfig {
deploymentId?: string
logging?: {
level?: 'verbose'
fullUrl?: false
fullUrl?: boolean
}
appDocumentPreloading?: boolean
strictNextHead?: boolean
Expand Down

0 comments on commit 72cc940

Please sign in to comment.