vite.config.js 2.0 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. sourcemap: false,
  27. rollupOptions: {
  28. output: {
  29. manualChunks(id) {
  30. let libStr = '@vue,element-plus,echarts,vue-router,pinia,js-fast-way,vuedraggable,split.js,hc-vue3-ui,nprogress'
  31. const libs = libStr.split(',')
  32. if (id.includes('node_modules')) {
  33. const arr = id.toString().split('node_modules/')[1].split('/')
  34. if (libs.indexOf(arr[0]) !== -1) {
  35. return '_' + arr[0]
  36. } else {
  37. return '__vendor'
  38. }
  39. }
  40. },
  41. chunkFileNames: 'static/js1/[name]-[hash].js',
  42. entryFileNames: 'static/js2/[name]-[hash].js',
  43. assetFileNames: 'static/[ext]/[name]-[hash].[ext]',
  44. },
  45. },
  46. brotliSize: false, // 不统计
  47. target: 'esnext',
  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. })