webpack/test/configCases/context-modules/exclusion/webpack.config.js

7 lines
171 B
JavaScript
Raw Normal View History

2025-04-22 18:49:30 +08:00
const webpack = require("../../../../");
2017-09-25 20:11:27 +08:00
/** @type {import("../../../../").Configuration} */
2017-09-25 20:11:27 +08:00
module.exports = {
2018-02-25 09:00:20 +08:00
plugins: [new webpack.ContextExclusionPlugin(/dont/)]
2017-09-25 20:11:27 +08:00
};