vite.config.js 4.4 KB

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