vite.config.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. plugins: [
  9. vue(),
  10. commonjs({
  11. include: /utils\/map\/CityGis.Bridge.js/, // 包含的文件路径
  12. exclude: [], // 排除的文件路径
  13. extensions: ['.js'], // 需要转换的文件扩展名
  14. ignoreGlobal: false, // 是否忽略全局变量(例如 Buffer)
  15. sourceMap: false, // 是否生成源映射
  16. namedExports: {}, // 命名导出(名称和值)
  17. ignore: [], // 忽略文件的正则表达式
  18. transformMixedEsModules: true // 是否转换混合的 ES 模块
  19. })
  20. ],
  21. resolve: {
  22. alias: {
  23. '@': fileURLToPath(new URL('./src', import.meta.url))
  24. }
  25. },
  26. css: {
  27. postcss: {
  28. plugins: [
  29. postcssPxToViewport({
  30. viewportWidth: 1950, // 视窗的宽度,对应的是我们设计稿的宽度,一般是750
  31. viewportHeight: 1080, // 视窗的高度,根据750设备的宽度来指定,一般指定1334,也可以不配置
  32. unitPrecision: 3, // 指定`px`转换为视窗单位值的小数位数(很多时候无法整除)
  33. viewportUnit: 'vw', // 指定需要转换成的视窗单位,建议使用vw
  34. fontViewportUnit: 'vw',
  35. selectorBlackList: [], // 指定不转换为视窗单位的类,可以自定义,可以无限添加,建议定义一至两个通用的类名
  36. minPixelValue: 2, // 小于或等于`1px`不转换为视窗单位,你也可以设置为你想要的值
  37. mediaQuery: true, // 允媒体查许在询中转换`px`
  38. propList: ['*', '!min-width', '!min-height'],
  39. minValue: 10
  40. // exclude:[/Tabbar/] //以Tabbar文件开头的不转化
  41. })
  42. ]
  43. }
  44. }
  45. })