vite.config.ts 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. import { defineConfig } from 'vite'
  2. import vue from '@vitejs/plugin-vue'
  3. import eslintPlugin from '@nabla/vite-plugin-eslint'
  4. // https://vitejs.dev/config/
  5. export default defineConfig(({ mode }) => {
  6. return {
  7. base: mode === 'production' ? '/' : '/',
  8. server: {
  9. host: '0.0.0.0',
  10. port: 9528,
  11. proxy: {
  12. '/api': {
  13. target: 'http://zohocrm.promocollection.com.au:9007/',
  14. changeOrigin: true,
  15. rewrite: (path) => path.replace(/^\/api/, ''),
  16. },
  17. '/bpi': {
  18. // target: 'http://api.promocollection.com.cn:9004',
  19. target: 'http://192.168.10.62:8099',
  20. changeOrigin: true,
  21. rewrite: (path) => path.replace(/^\/bpi/, ''),
  22. },
  23. },
  24. },
  25. resolve: {
  26. alias: {
  27. '@': '/src/',
  28. },
  29. },
  30. css: {
  31. devSourcemap: true,
  32. preprocessorOptions: {
  33. scss: {
  34. api: 'modern',
  35. additionalData: `@use '@/assets/css/var.scss' as *;`,
  36. },
  37. },
  38. },
  39. plugins: [
  40. vue({ template: { compilerOptions: { hoistStatic: false } } }),
  41. eslintPlugin(),
  42. ],
  43. build: {
  44. // 设置最终构建的浏览器兼容目标
  45. target: 'es2020',
  46. // 构建后是否生成 source map 文件
  47. sourcemap: false,
  48. // chunk 大小警告的限制(以 kbs 为单位)
  49. chunkSizeWarningLimit: 1000,
  50. // 启用/禁用 gzip 压缩大小报告
  51. reportCompressedSize: false,
  52. },
  53. }
  54. })