@vercel/next 4.2.8 → 4.2.9

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 +4 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -14421,7 +14421,7 @@ async function serverBuild({
14421
14421
  }
14422
14422
  }
14423
14423
  const experimental = {
14424
- ppr: requiredServerFilesManifest.config.experimental?.ppr === true
14424
+ ppr: requiredServerFilesManifest.config.experimental?.ppr === true || requiredServerFilesManifest.config.experimental?.ppr === "incremental"
14425
14425
  };
14426
14426
  let appRscPrefetches = {};
14427
14427
  let appBuildTraces = {};
@@ -15472,6 +15472,9 @@ async function serverBuild({
15472
15472
  if (experimental.ppr) {
15473
15473
  edgeFunctions[`${pathname}${RSC_PREFETCH_SUFFIX}`] = edgeFunctions[pathname];
15474
15474
  }
15475
+ if (hasActionOutputSupport) {
15476
+ edgeFunctions[`${pathname}.action`] = edgeFunctions[pathname];
15477
+ }
15475
15478
  }
15476
15479
  }
15477
15480
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/next",
3
- "version": "4.2.8",
3
+ "version": "4.2.9",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index",
6
6
  "homepage": "https://vercel.com/docs/runtimes#official-runtimes/next-js",