webpack/test/configCases/plugins/loader-options-plugin/webpack.config.js

15 lines
264 B
JavaScript

var webpack = require("../../../../");
/** @type {import("../../../../").Configuration} */
module.exports = {
plugins: [
new webpack.LoaderOptionsPlugin({
minimize: true
}),
new webpack.LoaderOptionsPlugin({
test: /\.js$/,
jsfile: true
})
]
};