mirror of https://github.com/webpack/webpack.git
25 lines
315 B
JavaScript
25 lines
315 B
JavaScript
"use strict";
|
|
|
|
/** @type {import("../../../../").Configuration} */
|
|
module.exports = [
|
|
{
|
|
target: "web",
|
|
optimization: {
|
|
chunkIds: "named"
|
|
},
|
|
experiments: {
|
|
css: true
|
|
}
|
|
},
|
|
{
|
|
target: "web",
|
|
optimization: {
|
|
chunkIds: "named"
|
|
},
|
|
experiments: {
|
|
css: true,
|
|
outputModule: true
|
|
}
|
|
}
|
|
];
|