visionforge/visionforge-threejs/visionforge-threejs-server/webpack.config.d/02.bundle.js

10 lines
259 B
JavaScript
Raw Normal View History

2023-01-17 19:20:48 +03:00
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
module.exports = {
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: "static",
reportFilename: "bundle-report.html"
})
]
}