vite.config.js 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. import { defineConfig } from 'vite'
  2. import vue from '@vitejs/plugin-vue'
  3. import Pages from 'vite-plugin-pages'
  4. import path from 'path'
  5. import AutoImport from 'unplugin-auto-import/vite'
  6. import Components from 'unplugin-vue-components/vite'
  7. import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
  8. // https://vitejs.dev/config/
  9. export default defineConfig({
  10. plugins: [
  11. vue(),
  12. Pages({
  13. dirs: [
  14. { dir: 'src/page', baseRoute: '' },
  15. { dir: 'src/views', baseRoute: '' }
  16. ],
  17. exclude: ['**/components/*.vue'] // 排除组件
  18. }),
  19. AutoImport({
  20. resolvers: [ElementPlusResolver()]
  21. }),
  22. Components({
  23. dts: true,
  24. resolvers: [ElementPlusResolver()]
  25. })
  26. ],
  27. resolve: {
  28. alias: {
  29. '@': path.resolve(path.resolve(), 'src')
  30. }
  31. },
  32. minify: 'terser',
  33. // css: {
  34. // postcss: {
  35. // plugins: [
  36. // postCssPxToViewport({
  37. // unitToConvert: 'px', // 要转化的单位
  38. // viewportWidth: 1920, // UI设计稿的宽度
  39. // unitPrecision: 6, // 转换后的精度,即小数点位数
  40. // propList: ['*'], // 指定转换的css属性的单位,*代表全部css属性的单位都进行转换
  41. // viewportUnit: 'vw', // 指定需要转换成的视窗单位,默认vw
  42. // fontViewportUnit: 'vw', // 指定字体需要转换成的视窗单位,默认vw
  43. // selectorBlackList: ['wrap'], // 指定不转换为视窗单位的类名,
  44. // minPixelValue: 1, // 默认值1,小于或等于1px则不进行转换
  45. // mediaQuery: true, // 是否在媒体查询的css代码中也进行转换,默认false
  46. // replace: true, // 是否转换后直接更换属性值
  47. // landscape: false // 是否处理横屏情况
  48. // })
  49. // ]
  50. // }
  51. // },
  52. server: {
  53. open: true,
  54. proxy: {
  55. '/api': {
  56. // 正式环境地址
  57. // target: 'https://dev.wutongresearch.club/api',
  58. target: 'http://192.168.31.181:8110',
  59. changeOrigin: true,
  60. rewrite: (path) => path.replace(/^\/api/, '')
  61. }
  62. }
  63. }
  64. })