From 5764c20883367d4603c5805064308ea05e55ee6a Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Wed, 26 Oct 2022 10:38:23 +0200 Subject: [PATCH] fix(schema): disable early hints by default --- packages/schema/src/config/experimental.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/schema/src/config/experimental.ts b/packages/schema/src/config/experimental.ts index bf29a8e0605..b1f050f9a1d 100644 --- a/packages/schema/src/config/experimental.ts +++ b/packages/schema/src/config/experimental.ts @@ -83,11 +83,11 @@ export default defineUntypedSchema({ /** Enable cross-origin prefetch using the Speculation Rules API. */ crossOriginPrefetch: false, - /** + /** * Write early hints when using node server. * - * @note If you are using Nginx, set the value to `false`. Nginx does not support 103 Early hints in the current version. + * @note nginx does not support 103 Early hints in the current version. */ - writeEarlyHints: true + writeEarlyHints: false } })