From 72cc94013c2edb8f23b0c3655ddb6bfb8fd2468d Mon Sep 17 00:00:00 2001 From: Adrien KISSIE Date: Wed, 27 Sep 2023 22:42:53 +0200 Subject: [PATCH] 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. --- packages/next/src/server/config-shared.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/next/src/server/config-shared.ts b/packages/next/src/server/config-shared.ts index 31a66f85be27..3c3c46690e10 100644 --- a/packages/next/src/server/config-shared.ts +++ b/packages/next/src/server/config-shared.ts @@ -165,7 +165,7 @@ export interface ExperimentalConfig { deploymentId?: string logging?: { level?: 'verbose' - fullUrl?: false + fullUrl?: boolean } appDocumentPreloading?: boolean strictNextHead?: boolean