constant.ts 544 B

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