mirror of https://github.com/webpack/webpack.git
25 lines
362 B
JavaScript
25 lines
362 B
JavaScript
/** @type {import("../../../../").Configuration} */
|
|
module.exports = {
|
|
output: {
|
|
filename: "[name].js"
|
|
},
|
|
target: "web",
|
|
optimization: {
|
|
splitChunks: {
|
|
chunks: "all",
|
|
cacheGroups: {
|
|
b: {
|
|
test: /b\.js/,
|
|
name: "common",
|
|
enforce: true
|
|
},
|
|
c: {
|
|
test: /c\.js/,
|
|
name: "common",
|
|
enforce: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|