vite.config.js 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. import commonjs from 'vite-plugin-commonjs';
  6. // https://vitejs.dev/config/
  7. export default defineConfig({
  8. publicDir: 'public',
  9. plugins: [
  10. vue(),
  11. commonjs({
  12. include: /utils\/map\/CityGis.Bridge.js/, // 包含的文件路径
  13. exclude: [], // 排除的文件路径
  14. extensions: ['.js'], // 需要转换的文件扩展名
  15. ignoreGlobal: false, // 是否忽略全局变量(例如 Buffer)
  16. sourceMap: false, // 是否生成源映射
  17. namedExports: {}, // 命名导出(名称和值)
  18. ignore: [], // 忽略文件的正则表达式
  19. transformMixedEsModules: true // 是否转换混合的 ES 模块
  20. })
  21. ],
  22. server: {
  23. port: '8090',
  24. host: '0.0.0.0',
  25. proxy: {
  26. '/api': {
  27. //apiTest是自行设置的请求前缀,按照这个来匹配请求,有这个字段的请求,就会进到代理来
  28. target: 'http://10.1.161.180:7878/', // 需要代理的域名
  29. secure: false,
  30. changeOrigin: true,
  31. rewrite: (path) => path.replace(/^\/api/, '') //重写匹配的字段,如果不需要放在请求路径上,可以重写为""
  32. },
  33. '/cityGIsApi': {
  34. //apiTest是自行设置的请求前缀,按照这个来匹配请求,有这个字段的请求,就会进到代理来
  35. target: 'http://10.1.161.113:18080/', // 需要代理的域名
  36. secure: false,
  37. changeOrigin: true,
  38. rewrite: (path) => path.replace(/^\/cityGIsApi/, '') //重写匹配的字段,如果不需要放在请求路径上,可以重写为""
  39. }
  40. // '^/citygis-gateway': {
  41. // //apiTest是自行设置的请求前缀,按照这个来匹配请求,有这个字段的请求,就会进到代理来
  42. // target: 'http://10.1.161.53:30080/', // 需要代理的域名
  43. // secure: false,
  44. // changeOrigin: true,
  45. // rewrite: (path) => path.replace(/^\/citygis-gateway/, 'citygis-gateway/')
  46. // }
  47. }
  48. },
  49. resolve: {
  50. alias: {
  51. '@': fileURLToPath(new URL('./src', import.meta.url))
  52. }
  53. },
  54. css: {
  55. postcss: {
  56. plugins: [
  57. postcssPxToViewport({
  58. viewportWidth: 1950, // 视窗的宽度,对应的是我们设计稿的宽度,一般是750
  59. viewportHeight: 1080, // 视窗的高度,根据750设备的宽度来指定,一般指定1334,也可以不配置
  60. unitPrecision: 3, // 指定`px`转换为视窗单位值的小数位数(很多时候无法整除)
  61. viewportUnit: 'vw', // 指定需要转换成的视窗单位,建议使用vw
  62. fontViewportUnit: 'vw',
  63. selectorBlackList: [], // 指定不转换为视窗单位的类,可以自定义,可以无限添加,建议定义一至两个通用的类名
  64. minPixelValue: 2, // 小于或等于`1px`不转换为视窗单位,你也可以设置为你想要的值
  65. mediaQuery: true, // 允媒体查许在询中转换`px`
  66. propList: ['*', '!min-width', '!min-height'],
  67. minValue: 10
  68. // exclude:[/Tabbar/] //以Tabbar文件开头的不转化
  69. })
  70. ]
  71. }
  72. }
  73. });