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