this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Warn when using Next 16 (#998)

authored by

Victor Berchet and committed by
GitHub
f69787ce 4d2271ce

+8
+5
.changeset/nine-rice-return.md
··· 1 + --- 2 + "@opennextjs/cloudflare": patch 3 + --- 4 + 5 + Warn when using Next 16
+3
packages/cloudflare/src/cli/build/build.ts
··· 101 101 logger.error("Next.js version unsupported, please upgrade to version 14.2 or greater."); 102 102 process.exit(1); 103 103 } 104 + if (buildHelper.compareSemver(options.nextVersion, ">=", "16")) { 105 + logger.warn("Next.js 16 is not fully supported yet! Some features may not work as expected."); 106 + } 104 107 }