mirror of https://github.com/webpack/webpack.git
25 lines
413 B
JavaScript
25 lines
413 B
JavaScript
"use strict";
|
|
|
|
/** @type {import("../../../").Configuration} */
|
|
module.exports = {
|
|
mode: "production",
|
|
entry: "./index",
|
|
output: {
|
|
filename: "bundle.js"
|
|
},
|
|
profile: true,
|
|
stats: {
|
|
reasons: true,
|
|
chunkModules: true,
|
|
dependentModules: true,
|
|
chunkOrigins: true,
|
|
modules: true,
|
|
cached: true,
|
|
cachedAssets: true,
|
|
source: true,
|
|
errorDetails: true,
|
|
publicPath: true,
|
|
outputPath: true
|
|
}
|
|
};
|