From 6d830c7629c516dbb37c252863144f18192b9237 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Mis=C3=A1k?= Date: Wed, 26 Oct 2022 10:28:41 +0200 Subject: [PATCH] docs: add note about early hints and nginx (#8485) resolves https://github.com/nuxt/framework/issues/8306 --- packages/schema/src/config/experimental.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/schema/src/config/experimental.ts b/packages/schema/src/config/experimental.ts index 0c342daaa2f..bf29a8e0605 100644 --- a/packages/schema/src/config/experimental.ts +++ b/packages/schema/src/config/experimental.ts @@ -83,7 +83,11 @@ export default defineUntypedSchema({ /** Enable cross-origin prefetch using the Speculation Rules API. */ crossOriginPrefetch: false, - /** Write early hints when using node server */ + /** + * 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. + */ writeEarlyHints: true } })