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

Commit

Permalink
fix(schema): disable early hints by default
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Oct 26, 2022
1 parent 6d830c7 commit 5764c20
Showing 1 changed file with 3 additions and 3 deletions.
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
}
})

0 comments on commit 5764c20

Please sign in to comment.