inital commit

This commit is contained in:
2026-01-01 15:25:19 +05:30
commit f0ae49465a
36361 changed files with 4894111 additions and 0 deletions

18
node_modules/next/dist/esm/shared/lib/canary-only.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
export function isStableBuild() {
var _process_env___NEXT_VERSION;
return !((_process_env___NEXT_VERSION = "15.2.4") == null ? void 0 : _process_env___NEXT_VERSION.includes('canary')) && !process.env.__NEXT_TEST_MODE && !process.env.NEXT_PRIVATE_LOCAL_DEV;
}
export class CanaryOnlyError extends Error {
constructor(arg){
if (typeof arg === 'object' && 'feature' in arg) {
super('The experimental feature "' + arg.feature + '" can only be enabled when using the latest canary version of Next.js.');
} else {
super(arg);
}
// This error is meant to interrupt the server start/build process
// but the stack trace isn't meaningful, as it points to internal code.
this.stack = undefined;
}
}
//# sourceMappingURL=canary-only.js.map