2026-08-13 8f0b74144a824c302326fee92081565f16ffde92
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import type { UserConfig } from 'vite';
 
async function getCommonConfig(): Promise<UserConfig> {
  return {
    build: {
      chunkSizeWarningLimit: 2000,
      reportCompressedSize: false,
      sourcemap: false,
    },
    optimizeDeps: {
      exclude: ['video.js', '@videojs-player/vue'],
    },
  };
}
 
export { getCommonConfig };