initial commit. phase 1 complete

This commit is contained in:
2026-05-05 20:45:19 +02:00
parent d9c68313a0
commit 89e058ffac
20631 changed files with 3224610 additions and 43 deletions
@@ -0,0 +1,15 @@
const NEXT_STATIC_GEN_BAILOUT = "NEXT_STATIC_GEN_BAILOUT";
export class StaticGenBailoutError extends Error {
constructor(...args){
super(...args);
this.code = NEXT_STATIC_GEN_BAILOUT;
}
}
export function isStaticGenBailoutError(error) {
if (typeof error !== "object" || error === null || !("code" in error)) {
return false;
}
return error.code === NEXT_STATIC_GEN_BAILOUT;
}
//# sourceMappingURL=static-generation-bailout.js.map