mirror of https://github.com/webpack/webpack.git
28 lines
520 B
JavaScript
28 lines
520 B
JavaScript
/** @type {import("../../../../").Configuration[]} */
|
|
module.exports = [
|
|
{
|
|
mode: "production",
|
|
name: "normal-ids",
|
|
output: {
|
|
filename: "bundle0.[contenthash:6].js",
|
|
chunkFilename: "chunk0.[contenthash:6].js"
|
|
},
|
|
optimization: {
|
|
chunkIds: "size",
|
|
moduleIds: "named"
|
|
}
|
|
},
|
|
{
|
|
mode: "production",
|
|
name: "normal-ids",
|
|
output: {
|
|
filename: "bundle1.[contenthash:6].js",
|
|
chunkFilename: "chunk1.[contenthash:6].js"
|
|
},
|
|
optimization: {
|
|
chunkIds: "named",
|
|
moduleIds: "named"
|
|
}
|
|
}
|
|
];
|