webpack/test/configCases/errors/exception-in-chunk-renderer/webpack.config.js

17 lines
340 B
JavaScript

class ThrowsExceptionInRender {
apply(compiler) {
compiler.hooks.compilation.tap("ThrowsException", compilation => {
compilation.mainTemplate.hooks.requireExtensions.tap(
"ThrowsException",
() => {
throw new Error("Test exception");
}
);
});
}
}
module.exports = {
plugins: [new ThrowsExceptionInRender()]
};