@vercel/next 4.1.2 → 4.1.3

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 +1 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -12078,10 +12078,7 @@ async function serverBuild({
12078
12078
  nextVersion,
12079
12079
  CORRECT_MIDDLEWARE_ORDER_VERSION
12080
12080
  );
12081
- const isCorrectManifests = import_semver3.default.gte(
12082
- nextVersion,
12083
- CORRECTED_MANIFESTS_VERSION
12084
- );
12081
+ const isCorrectManifests = !experimentalAllowBundling && import_semver3.default.gte(nextVersion, CORRECTED_MANIFESTS_VERSION);
12085
12082
  let hasStatic500 = !!staticPages[import_path4.default.posix.join(entryDirectory, "500")];
12086
12083
  if (lambdaPageKeys.length === 0) {
12087
12084
  throw new import_build_utils2.NowBuildError({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/next",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index",
6
6
  "homepage": "https://vercel.com/docs/runtimes#official-runtimes/next-js",