vite.config.ts 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. changeOrigin: true,
  20. rewrite: (path) => path.replace(/^\/bpi/, ''),
  21. },
  22. },
  23. },
  24. resolve: {
  25. alias: {
  26. '@': '/src/',
  27. },
  28. },
  29. css: {
  30. devSourcemap: true,
  31. preprocessorOptions: {
  32. scss: {
  33. additionalData: `@import '@/assets/css/var.scss';`,
  34. },
  35. },
  36. },
  37. plugins: [
  38. vue({ template: { compilerOptions: { hoistStatic: false } } }),
  39. eslintPlugin(),
  40. ],
  41. build: {
  42. // 设置最终构建的浏览器兼容目标
  43. target: 'es2020',
  44. // 构建后是否生成 source map 文件
  45. sourcemap: false,
  46. // chunk 大小警告的限制(以 kbs 为单位)
  47. chunkSizeWarningLimit: 1000,
  48. // 启用/禁用 gzip 压缩大小报告
  49. reportCompressedSize: false,
  50. },
  51. }
  52. })