vite.config.js 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. import { fileURLToPath, URL } from 'node:url';
  2. import { defineConfig } from 'vite';
  3. import vue from '@vitejs/plugin-vue';
  4. import postcssPxToViewport from 'postcss-px-to-viewport';
  5. export default defineConfig({
  6. plugins: [vue()],
  7. server: {
  8. base: './',
  9. port: '8098',
  10. host: '0.0.0.0',
  11. proxy: {
  12. '/api': {
  13. //apiTest是自行设置的请求前缀,按照这个来匹配请求,有这个字段的请求,就会进到代理来
  14. target: 'http://10.1.161.183:7878/', // 需要代理的域名
  15. secure: false,
  16. changeOrigin: true,
  17. rewrite: (path) => path.replace(/^\/api/, '') //重写匹配的字段,如果不需要放在请求路径上,可以重写为""
  18. },
  19. '/cityGIsApi': {
  20. //apiTest是自行设置的请求前缀,按照这个来匹配请求,有这个字段的请求,就会进到代理来
  21. // target: 'http://10.1.161.113:18080/', // 需要代理的域名
  22. // target: 'http://58.34.215.19:9082/', // 需要代理的域名
  23. target: 'http://10.1.161.53:9082/',
  24. secure: false,
  25. changeOrigin: true,
  26. rewrite: (path) => path.replace(/^\/cityGIsApi/, '') //重写匹配的字段,如果不需要放在请求路径上,可以重写为""
  27. },
  28. '/vmap': {
  29. //apiTest是自行设置的请求前缀,按照这个来匹配请求,有这个字段的请求,就会进到代理来
  30. // target: 'http://10.1.161.113:18080/', // 需要代理的域名
  31. // target: 'http://58.34.215.19:9082', // 需要代理的域名
  32. target: 'http://10.1.161.53:9082/',
  33. secure: false,
  34. changeOrigin: true
  35. }
  36. }
  37. },
  38. resolve: {
  39. alias: {
  40. '@': fileURLToPath(new URL('./src', import.meta.url))
  41. }
  42. },
  43. css: {
  44. postcss: {
  45. plugins: [
  46. postcssPxToViewport({
  47. viewportWidth: 1080, // 视窗的宽度,对应的是我们设计稿的宽度,一般是750
  48. viewportHeight: 1080, // 视窗的高度,根据750设备的宽度来指定,一般指定1334,也可以不配置
  49. unitPrecision: 3, // 指定`px`转换为视窗单位值的小数位数(很多时候无法整除)
  50. viewportUnit: 'vh', // 指定需要转换成的视窗单位,建议使用vw
  51. fontViewportUnit: 'vh',
  52. selectorBlackList: [], // 指定不转换为视窗单位的类,可以自定义,可以无限添加,建议定义一至两个通用的类名
  53. minPixelValue: 2, // 小于或等于`1px`不转换为视窗单位,你也可以设置为你想要的值
  54. mediaQuery: true, // 允媒体查许在询中转换`px`
  55. propList: ['*', '!min-width', '!min-height'],
  56. minValue: 10
  57. // exclude:[/Tabbar/] //以Tabbar文件开头的不转化
  58. })
  59. ]
  60. }
  61. }
  62. });