@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.
- package/dist/index.js +1 -4
- 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({
|