mirror of
https://github.com/vbenjs/vben-admin-thin-next.git
synced 2025-01-25 02:58:40 +08:00
13 lines
305 B
TypeScript
13 lines
305 B
TypeScript
|
import visualizer from 'rollup-plugin-visualizer';
|
||
|
import { isReportMode } from '../../utils';
|
||
|
|
||
|
export function configVisualizerConfig() {
|
||
|
if (isReportMode()) {
|
||
|
return visualizer({
|
||
|
filename: './node_modules/.cache/visualizer/stats.html',
|
||
|
open: true,
|
||
|
}) as Plugin;
|
||
|
}
|
||
|
return [];
|
||
|
}
|