webpack/test/configCases/css/external-in-web/webpack.config.js

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
}
}
];