constant.ts 529 B

12345678910111213141516171819202122232425
  1. export const OUTPUT_DIR = 'dist';
  2. // chunk 警告大小
  3. export const chunkSizeWarningLimit = 2000
  4. // 禁用 brotli 压缩大小报告
  5. export const brotliSize = false
  6. // 分包
  7. export const rollupOptions = {
  8. output: {
  9. chunkFileNames: 'static/js/[name]-[hash].js',
  10. entryFileNames: 'static/js/[name]-[hash].js',
  11. assetFileNames: 'static/[ext]/[name]-[hash].[ext]'
  12. }
  13. }
  14. // 去除开发代码
  15. export const terserOptions = {
  16. compress: {
  17. keep_infinity: true,
  18. drop_console: true,
  19. drop_debugger: true
  20. }
  21. }