Fix: Use boolean instead of false for experimental logging config (#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.
This commit is contained in:
Adrien KISSIE 2023-09-27 22:42:53 +02:00 committed by GitHub
parent ad63effbc7
commit 72cc94013c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -165,7 +165,7 @@ export interface ExperimentalConfig {
deploymentId?: string
logging?: {
level?: 'verbose'
fullUrl?: false
fullUrl?: boolean
}
appDocumentPreloading?: boolean
strictNextHead?: boolean