mirror of https://github.com/webpack/webpack.git
7 lines
171 B
JavaScript
7 lines
171 B
JavaScript
|
const webpack = require("../../../../");
|
||
|
|
||
|
/** @type {import("../../../../").Configuration} */
|
||
|
module.exports = {
|
||
|
plugins: [new webpack.ContextExclusionPlugin(/dont/)]
|
||
|
};
|