mirror of
https://gitcode.com/gh_mirrors/vue/vue-vben-admin
synced 2025-12-30 05:12:24 +00:00
17 lines
362 B
TypeScript
17 lines
362 B
TypeScript
/**
|
|
* Package file volume analysis
|
|
*/
|
|
import visualizer from 'rollup-plugin-visualizer';
|
|
|
|
export function configVisualizerConfig() {
|
|
if (process.env.REPORT === 'true') {
|
|
return visualizer({
|
|
filename: './node_modules/.cache/visualizer/stats.html',
|
|
open: true,
|
|
gzipSize: true,
|
|
brotliSize: true,
|
|
}) as Plugin;
|
|
}
|
|
return [];
|
|
}
|