bpms_site/.svn/pristine/a5/a507483a2a6168eb5df6ce8afdab073afda0170f.svn-base
2025-11-02 16:38:49 +03:30

17 lines
902 B
Plaintext

import chalk from "next/dist/compiled/chalk";
import path from "path";
const ErrorLoader = function() {
var _this__module_issuer, _this__module, _this__compiler;
// @ts-ignore exists
const options = this.getOptions() || {};
const { reason = "An unknown error has occurred" } = options;
// @ts-expect-error
const resource = ((_this__module = this._module) == null ? void 0 : (_this__module_issuer = _this__module.issuer) == null ? void 0 : _this__module_issuer.resource) ?? null;
const context = this.rootContext ?? ((_this__compiler = this._compiler) == null ? void 0 : _this__compiler.context);
const issuer = resource ? context ? path.relative(context, resource) : resource : null;
const err = new Error(reason + (issuer ? `\nLocation: ${chalk.cyan(issuer)}` : ""));
this.emitError(err);
};
export default ErrorLoader;
//# sourceMappingURL=error-loader.js.map