/opt/canhelp/node_modules/next/dist/esm/build/webpack/loaders/postcss-loader/src
NameSizeModeActions
Error.js8490644editdlrm
Error.js.map17520644editdlrm
index.js41490644editdlrm
index.js.map70060644editdlrm
utils.js24800644editdlrm
utils.js.map41940644editdlrm
Warning.js6750644editdlrm
Warning.js.map13710644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/esm/build/webpack/loaders/postcss-loader/src/Error.js (849B)
/** * **PostCSS Syntax Error** * * Loader wrapper for postcss syntax errors * * @class SyntaxError * @extends Error * * @param {Object} err CssSyntaxError */ export default class PostCSSSyntaxError extends Error { constructor(error){ super(error); const { line, column, reason, plugin, file } = error; this.name = 'SyntaxError'; this.message = `${this.name}\n\n`; if (typeof line !== 'undefined') { this.message += `(${line}:${column}) `; } this.message += plugin ? `${plugin}: ` : ''; this.message += file ? `${file} ` : ' '; this.message += reason; const code = error.showSourceCode(); if (code) { this.message += `\n\n${code}\n`; } this.stack = false; } } //# sourceMappingURL=Error.js.map