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

fix(schema): disable early hints by default #8486

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: 3 additions & 3 deletions packages/schema/src/config/experimental.ts
Expand Up @@ -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
}
})