vite.config.js 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import { defineConfig } from 'vite'
  2. import vue from '@vitejs/plugin-vue'
  3. import UnoCSS from 'unocss/vite'
  4. import { resolve } from 'path'
  5. import config from './src/config'
  6. // https://vitejs.dev/config/
  7. export default defineConfig({
  8. css: {
  9. extract: true,
  10. },
  11. resolve: {
  12. alias: {
  13. '~src': resolve(__dirname, './src'),
  14. '~ass': resolve(__dirname, './src/assets'),
  15. '~com': resolve(__dirname, './src/components'),
  16. '~api': resolve(__dirname, './src/api/modules'),
  17. '~sto': resolve(__dirname, './src/store/modules'),
  18. '~uti': resolve(__dirname, './src/utils'),
  19. },
  20. },
  21. plugins: [
  22. vue(),
  23. UnoCSS(),
  24. ],
  25. build: {
  26. target: 'esnext', // 设置构建目标
  27. minify: 'esbuild', // 使用 esbuild 进行压缩
  28. chunkSizeWarningLimit: 1000, // 将警告的阈值提高到 1000 KB
  29. rollupOptions: {
  30. output: {
  31. manualChunks(id) {
  32. let libStr = '@vue,hc-vue3-ui,element-plus,z-element-plus,echarts,vue-router,pinia,vuedraggable,js-web-screen-shot,js-fast-way,nprogress,pinyin-pro'
  33. const libs = libStr.split(',')
  34. if (id.includes('node_modules')) {
  35. const arr = id.toString().split('node_modules/')[1].split('/')
  36. if (libs.indexOf(arr[0]) !== -1) {
  37. return '_' + arr[0]
  38. } else {
  39. return '__vendor'
  40. }
  41. }
  42. },
  43. chunkFileNames: 'static/js1/[name]-[hash].js',
  44. entryFileNames: 'static/js2/[name]-[hash].js',
  45. assetFileNames: 'static/[ext]/[name]-[hash].[ext]',
  46. },
  47. },
  48. },
  49. server: {
  50. ...config.vite,
  51. proxy: {
  52. '/api': {
  53. ws: true,
  54. changeOrigin: true,
  55. target: config.target,
  56. rewrite: (path) => path.replace(new RegExp('^/api'), '/'),
  57. },
  58. },
  59. },
  60. })