@vercel/next 4.0.13 → 4.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -10952,7 +10952,8 @@ var onPrerenderRoute = (prerenderRouteArgs) => async (routeKey, {
10952
10952
  initialHeaders: {
10953
10953
  "content-type": rscContentTypeHeader,
10954
10954
  vary: rscVaryHeader,
10955
- ...experimentalPPR && rscDidPostponeHeader ? { [rscDidPostponeHeader]: "1" } : {}
10955
+ // If it contains a pre-render, then it was postponed.
10956
+ ...prerender && rscDidPostponeHeader ? { [rscDidPostponeHeader]: "1" } : {}
10956
10957
  }
10957
10958
  } : {}
10958
10959
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/next",
3
- "version": "4.0.13",
3
+ "version": "4.0.14",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index",
6
6
  "homepage": "https://vercel.com/docs/runtimes#official-runtimes/next-js",