mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-05 04:12:45 +08:00
15 lines
344 B
TypeScript
15 lines
344 B
TypeScript
import visualizer from 'rollup-plugin-visualizer';
|
|
import { IsReport } from '../../constant';
|
|
|
|
export function ConfigVisualizerConfig() {
|
|
if (IsReport) {
|
|
return visualizer({
|
|
filename: './node_modules/.cache/visualizer/stats.html',
|
|
open: true,
|
|
gzipSize: true,
|
|
brotliSize: true,
|
|
}) as Plugin;
|
|
}
|
|
return [];
|
|
}
|