mirror of https://github.com/webpack/webpack.git
26 lines
382 B
JavaScript
26 lines
382 B
JavaScript
/** @type {import("../../../../").Configuration[]} */
|
|
module.exports = [
|
|
{
|
|
target: "web",
|
|
mode: "development",
|
|
output: {
|
|
uniqueName: "my-app",
|
|
cssHeadDataCompression: true
|
|
},
|
|
experiments: {
|
|
css: true
|
|
}
|
|
},
|
|
{
|
|
target: "web",
|
|
mode: "production",
|
|
output: {
|
|
cssHeadDataCompression: false
|
|
},
|
|
performance: false,
|
|
experiments: {
|
|
css: true
|
|
}
|
|
}
|
|
];
|