vite.config.js 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. import * as path from "path";
  2. const resolve = (dir) => path.resolve(__dirname, dir);
  3. import { fileURLToPath, URL } from 'node:url'
  4. import { defineConfig } from 'vite'
  5. import vue from '@vitejs/plugin-vue'
  6. import AutoImport from 'unplugin-auto-import/vite'
  7. import Components from 'unplugin-vue-components/vite'
  8. import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
  9. import postcsspxtoviewport8plugin from 'postcss-px-to-viewport-8-plugin'
  10. export default defineConfig({
  11. server:{
  12. cors: true,
  13. proxy: {
  14. // 代理所有 /api 的请求,该求情将被代理到 target 中
  15. '/api': {
  16. // 代理请求之后的请求地址(你的真实接口地址)
  17. target: 'https://cimweb.zjw.sh.cegn.cn:2007/data-business-prod/',
  18. //target: 'http://localhost:9250/',
  19. secure: false,
  20. ws: true,
  21. // 跨域
  22. changeOrigin: true,
  23. rewrite: (path) => path.replace(/^\/api/, '')
  24. },
  25. '/addressapi': {
  26. // 代理请求之后的请求地址(你的真实接口地址)
  27. target: 'https://cimweb.zjw.sh.cegn.cn:2008/',
  28. //target: 'http://localhost:9250/',
  29. secure: false,
  30. ws: true,
  31. // 跨域
  32. changeOrigin: true,
  33. rewrite: (path) => path.replace(/^\/addressapi/, '')
  34. },
  35. '/netapi': {
  36. // 代理请求之后的请求地址(你的真实接口地址)
  37. target: 'http://58.34.215.19:19259/',
  38. //target: 'http://localhost:9250/',
  39. secure: false,
  40. ws: true,
  41. // 跨域
  42. changeOrigin: true,
  43. rewrite: (path) => path.replace(/^\/netapi/, '')
  44. },
  45. '/zwapi': {
  46. // 代理请求之后的请求地址(你的真实接口地址)
  47. target: 'http://10.90.9.143:9252/',
  48. //target: 'http://localhost:9250/',
  49. secure: false,
  50. ws: true,
  51. // 跨域
  52. changeOrigin: true,
  53. rewrite: (path) => path.replace(/^\/zwapi/, '')
  54. }
  55. },
  56. },
  57. css:{
  58. postcss:{
  59. plugins:[
  60. postcsspxtoviewport8plugin({
  61. unitToConvert: 'px', // 要转化的单位
  62. viewportWidth: 1920, // UI设计稿的宽度
  63. unitPrecision: 6, // 转换后的精度,即小数点位数
  64. propList: [
  65. 'width',
  66. 'left',
  67. 'right',
  68. 'font-size',
  69. 'margin-left',
  70. 'margin-right',
  71. 'text-indent',
  72. 'padding-left',
  73. 'padding-right',
  74. 'padding',
  75. ], // 指定转换的css属性的单位,*代表全部css属性的单位都进行转换
  76. viewportUnit: 'vw', // 指定需要转换成的视窗单位,默认vw
  77. fontViewportUnit: 'vw', // 指定字体需要转换成的视窗单位,默认vw
  78. selectorBlackList: ['ignore-'], // 指定不转换为视窗单位的类名
  79. minPixelValue: 1, // 默认值1,小于或等于1px则不进行转换
  80. mediaQuery: true, // 是否在媒体查询的css代码中也进行转换,默认false
  81. replace: true, // 是否转换后直接更换属性值
  82. exclude: [/node_modules/], // 设置忽略文件,用正则做目录名匹配
  83. // exclude: [],
  84. include: [
  85. /\/src\/pages\/amap\/factor-monitor.vue/,
  86. ],
  87. landscape: false, // 是否处理横屏情况
  88. }),
  89. // 处理属性转vh的情况
  90. postcsspxtoviewport8plugin({
  91. unitToConvert: 'px', // 要转化的单位
  92. viewportWidth: 1080, // UI设计稿的宽度
  93. unitPrecision: 6, // 转换后的精度,即小数点位数
  94. propList: [
  95. 'height',
  96. 'top',
  97. 'bottom',
  98. 'margin-top',
  99. 'margin-bottom',
  100. 'padding-top',
  101. 'padding-bottom',
  102. 'line-height',
  103. ], // 指定转换的css属性的单位,*代表全部css属性的单位都进行转换
  104. viewportUnit: 'vh', // 指定需要转换成的视窗单位,默认vw
  105. fontViewportUnit: 'vh', // 指定字体需要转换成的视窗单位,默认vw
  106. selectorBlackList: ['ignore-'], // 指定不转换为视窗单位的类名
  107. minPixelValue: 1, // 默认值1,小于或等于1px则不进行转换
  108. mediaQuery: true, // 是否在媒体查询的css代码中也进行转换,默认false
  109. replace: true, // 是否转换后直接更换属性值
  110. exclude: [/node_modules/], // 设置忽略文件,用正则做目录名匹配
  111. // exclude: [],
  112. include: [
  113. /\/src\/pages\/amap\/factor-monitor.vue/,
  114. ],
  115. landscape: false, // 是否处理横屏情况
  116. })
  117. ]
  118. }
  119. },
  120. plugins: [vue(), AutoImport({
  121. resolvers: [ElementPlusResolver()],
  122. }),
  123. Components({
  124. resolvers: [ElementPlusResolver()],
  125. }),],
  126. base:'./',
  127. resolve: {
  128. alias: {
  129. '@': fileURLToPath(new URL('./src', import.meta.url))
  130. }
  131. }
  132. })