mirror of https://github.com/webpack/webpack.git
7 lines
196 B
JavaScript
7 lines
196 B
JavaScript
|
const webpack = require("../../../../");
|
||
|
|
||
|
/** @type {import("../../../../").Configuration} */
|
||
|
module.exports = {
|
||
|
plugins: [new webpack.ContextReplacementPlugin(/replacement.b$/, /^\.\/only/)]
|
||
|
};
|