14 小时以前 bbce6db600e6bb0cf2a3bb78bdf5ccff70b737a8
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 };