webpack/test/configCases/no-parse/no-parse-function/webpack.config.js

9 lines
151 B
JavaScript

/** @type {import("../../../../").Configuration} */
module.exports = {
module: {
noParse(content) {
return /not-parsed/.test(content);
}
}
};