common.ts 258 B

12345678910111213
  1. import type { UserConfig } from 'vite';
  2. async function getCommonConfig(): Promise<UserConfig> {
  3. return {
  4. build: {
  5. chunkSizeWarningLimit: 1000,
  6. reportCompressedSize: false,
  7. sourcemap: false,
  8. },
  9. };
  10. }
  11. export { getCommonConfig };