Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

docs: add note about early hints and nginx #8485

Merged
merged 1 commit into from Oct 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion packages/schema/src/config/experimental.ts
Expand Up @@ -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
}
})