create project
This commit is contained in:
22
kitabcitab/node_modules/next/dist/client/components/not-found.js
generated
vendored
Normal file
22
kitabcitab/node_modules/next/dist/client/components/not-found.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.notFound = notFound;
|
||||
exports.NOT_FOUND_ERROR_CODE = void 0;
|
||||
const NOT_FOUND_ERROR_CODE = 'NEXT_NOT_FOUND';
|
||||
exports.NOT_FOUND_ERROR_CODE = NOT_FOUND_ERROR_CODE;
|
||||
function notFound() {
|
||||
// eslint-disable-next-line no-throw-literal
|
||||
const error = new Error(NOT_FOUND_ERROR_CODE);
|
||||
error.digest = NOT_FOUND_ERROR_CODE;
|
||||
throw error;
|
||||
}
|
||||
|
||||
if ((typeof exports.default === 'function' || (typeof exports.default === 'object' && exports.default !== null)) && typeof exports.default.__esModule === 'undefined') {
|
||||
Object.defineProperty(exports.default, '__esModule', { value: true });
|
||||
Object.assign(exports.default, exports);
|
||||
module.exports = exports.default;
|
||||
}
|
||||
|
||||
//# sourceMappingURL=not-found.js.map
|
||||
Reference in New Issue
Block a user