You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: update cache handler to accomodate changes in next@canary (#2480)
* fix: update cache handler to accomodate changes in next@canary
* initial implementation for creating cache entry blobs from prerendered content for APP_PAGE
* chore: mark config.experimental.incrementalCacheHandlerPath as TS ignored, because it no longer exist in newest major, but we still have to set it for older next versions
* fix: handle APP_PAGE cache kind when checking tag staleness
* fix: handle prerendered ppr rsc
* do Next.js version verification earlier and make it easy to grab the version after build command finished
* decide wether to use APP_PAGE or PAGE kind based on actual next version
`@netlify/plugin-next@5 requires Next.js version ${SUPPORTED_NEXT_VERSIONS}, but found ${ctx.nextVersion}. Please upgrade your project's Next.js version.`,
57
+
)
58
+
}
50
59
}
51
60
if(ctx.buildConfig.output==='export'){
52
61
if(!ctx.exportDetail?.success){
@@ -60,14 +69,6 @@ export function verifyPublishDir(ctx: PluginContext) {
`@netlify/plugin-next@5 requires Next.js version ${SUPPORTED_NEXT_VERSIONS}, but found ${nextVersion}. Please upgrade your project's Next.js version.`,
0 commit comments