10 lines
259 B
JavaScript
10 lines
259 B
JavaScript
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
||
|
|
||
|
module.exports = {
|
||
|
plugins: [
|
||
|
new BundleAnalyzerPlugin({
|
||
|
analyzerMode: "static",
|
||
|
reportFilename: "bundle-report.html"
|
||
|
})
|
||
|
]
|
||
|
}
|