mirror of
https://github.com/xiangshu233/vue3-vant4-mobile.git
synced 2025-04-05 06:22:45 +08:00
19 lines
439 B
TypeScript
19 lines
439 B
TypeScript
/**
|
|
* Package file volume analysis
|
|
*/
|
|
import visualizer from 'rollup-plugin-visualizer';
|
|
import type { PluginOption } from 'vite';
|
|
import { isReportMode } from '../../utils';
|
|
|
|
export function configVisualizerConfig() {
|
|
if (isReportMode()) {
|
|
return visualizer({
|
|
filename: './node_modules/.cache/visualizer/stats.html',
|
|
open: true,
|
|
gzipSize: true,
|
|
brotliSize: true,
|
|
}) as PluginOption;
|
|
}
|
|
return [];
|
|
}
|