mirror of https://github.com/webpack/webpack.git
23 lines
337 B
JavaScript
23 lines
337 B
JavaScript
"use strict";
|
|
|
|
/** @type {import("../../../").Configuration} */
|
|
module.exports = {
|
|
mode: "production",
|
|
entry: "./",
|
|
optimization: {
|
|
splitChunks: {
|
|
minSize: 0
|
|
}
|
|
},
|
|
stats: {
|
|
hash: false,
|
|
timings: false,
|
|
builtAt: false,
|
|
assets: false,
|
|
chunks: true,
|
|
chunkRelations: true,
|
|
chunkOrigins: true,
|
|
modules: false
|
|
}
|
|
};
|