vite.config.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. import { defineConfig, loadEnv } from 'vite'
  2. import vue from '@vitejs/plugin-vue'
  3. import path from 'path'
  4. import { compression } from 'vite-plugin-compression2'
  5. // https://vitejs.dev/config/
  6. export default defineConfig(({ command, mode }) => {
  7. // 根据当前工作目录中的 `mode` 加载 .env 文件
  8. const env = loadEnv(mode, process.cwd())
  9. return {
  10. plugins: [
  11. vue(),
  12. // 配置gzip压缩
  13. env.VITE_USE_COMPRESSION === 'true' && compression({
  14. algorithm: 'gzip',
  15. threshold: 1024 * 10 // 10KB以上的文件进行压缩
  16. })
  17. ],
  18. resolve: {
  19. alias: {
  20. '@': path.resolve(__dirname, 'src')
  21. // 'element-plus/lib/locale/lang/zh-cn': 'element-plus/dist/locale/zh-cn.mjs'
  22. }
  23. },
  24. server: {
  25. port: 3000,
  26. proxy: env.VITE_USE_PROXY === 'true' ? {
  27. [env.VITE_API_BASE_URL]: {
  28. target: env.VITE_PROXY_TARGET,
  29. changeOrigin: true,
  30. rewrite: (path) => path.replace(/^\/env.VITE_API_BASE_URL/, '')
  31. }
  32. } : null
  33. },
  34. css: {
  35. preprocessorOptions: {
  36. scss: {
  37. api: 'modern-compiler',
  38. additionalData: `@use "@/styles/variables.scss" as *;`
  39. }
  40. }
  41. },
  42. build: {
  43. // 指定输出路径
  44. outDir: mode === 'production' ? 'dist-prod' : 'dist-test',
  45. // 生成静态资源的存放路径
  46. assetsDir: 'assets',
  47. // 小于此阈值的导入或引用资源将内联为 base64 编码
  48. assetsInlineLimit: 4096,
  49. // 启用/禁用 CSS 代码拆分
  50. cssCodeSplit: true,
  51. // 构建后是否生成 source map 文件
  52. sourcemap: mode === 'production',
  53. // 自定义底层的 Rollup 打包配置
  54. rollupOptions: {
  55. input: {
  56. main: path.resolve(__dirname, 'index.html')
  57. },
  58. output: {
  59. // 分类输出
  60. chunkFileNames: 'assets/js/[name]-[hash].js',
  61. entryFileNames: 'assets/js/[name]-[hash].js',
  62. assetFileNames: 'assets/[ext]/[name]-[hash].[ext]',
  63. // 用于从入口点创建的块的打包输出格式[name]表示文件名,[hash]表示该文件内容hash值
  64. manualChunks: {
  65. 'element-plus': ['element-plus'],
  66. 'vue-lib': ['vue', 'vue-router', 'pinia']
  67. }
  68. }
  69. },
  70. // 设置为 false 可以禁用最小化混淆
  71. minify: mode === 'production' ? false : 'esbuild',
  72. // 启用/禁用 brotli 压缩大小报告
  73. brotliSize: false,
  74. // chunk 大小警告的限制
  75. chunkSizeWarningLimit: 2000
  76. },
  77. optimizeDeps: {
  78. include: ['vue', 'vue-router', 'pinia', 'axios', 'element-plus']
  79. }
  80. }
  81. })