webpack/test/configCases/css/css-modules/webpack.config.js

37 lines
746 B
JavaScript

const webpack = require("../../../../");
const path = require("path");
/** @type {function(any, any): import("../../../../").Configuration[]} */
module.exports = (env, { testPath }) => [
{
target: "web",
mode: "development",
experiments: {
css: true
}
},
{
target: "web",
mode: "production",
output: {
uniqueName: "my-app"
},
experiments: {
css: true
},
plugins: [
new webpack.ids.DeterministicModuleIdsPlugin({
maxLength: 3,
failOnConflict: true,
fixedLength: true,
test: m => m.type.startsWith("css")
}),
new webpack.experiments.ids.SyncModuleIdsPlugin({
test: m => m.type.startsWith("css"),
path: path.resolve(testPath, "module-ids.json"),
mode: "create"
})
]
}
];