visionforge/demo/playground/webpack.config.d/02.bundle.js

10 lines
259 B
JavaScript
Raw Normal View History

2022-01-07 12:29:43 +03:00
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
module.exports = {
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: "static",
reportFilename: "bundle-report.html"
})
]
}