vite.config.ts 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. import { defineConfig } from 'vite'
  2. import vue from '@vitejs/plugin-vue'
  3. import eslintPlugin from '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: 9527,
  11. proxy: {
  12. '/api': {
  13. target: 'http://zohocrm.promocollection.com.au:9008/',
  14. changeOrigin: true,
  15. rewrite: (path) => path.replace(/^\/api/, ''),
  16. },
  17. // '/common': {
  18. // target: 'http://zohocrm.promocollection.com.au:9008/',
  19. // changeOrigin: true,
  20. // },
  21. // '/purchase_orders': {
  22. // target: 'http://zohocrm.promocollection.com.au:9008/',
  23. // changeOrigin: true,
  24. // },
  25. // '/Purchase_orders': {
  26. // target: 'http://zohocrm.promocollection.com.au:9008/',
  27. // changeOrigin: true,
  28. // },
  29. },
  30. },
  31. resolve: {
  32. alias: {
  33. '@': '/src/',
  34. },
  35. },
  36. css: {
  37. devSourcemap: true,
  38. preprocessorOptions: {
  39. scss: {
  40. additionalData: `@import '@/assets/css/flex-custom.scss';@import '@/assets/css/var.scss';`,
  41. },
  42. },
  43. },
  44. plugins: [vue(), eslintPlugin()],
  45. build: {
  46. // 设置最终构建的浏览器兼容目标
  47. target: 'es2015',
  48. // 构建后是否生成 source map 文件
  49. sourcemap: false,
  50. // chunk 大小警告的限制(以 kbs 为单位)
  51. chunkSizeWarningLimit: 1000,
  52. // 启用/禁用 gzip 压缩大小报告
  53. reportCompressedSize: false,
  54. },
  55. }
  56. })