mirror of https://github.com/webpack/webpack.git
26 lines
337 B
JavaScript
26 lines
337 B
JavaScript
const stats = {
|
|
hash: false,
|
|
timings: false,
|
|
builtAt: false,
|
|
assets: false,
|
|
chunks: true,
|
|
chunkOrigins: true,
|
|
entrypoints: true,
|
|
modules: false
|
|
};
|
|
module.exports = {
|
|
mode: "production",
|
|
entry: {
|
|
main: "./",
|
|
},
|
|
output: {
|
|
filename: "default/[name].js"
|
|
},
|
|
optimization: {
|
|
splitChunks: {
|
|
minSize: 80
|
|
}
|
|
},
|
|
stats
|
|
};
|