vite.config.js 730 B

12345678910111213141516171819202122232425262728
  1. import { defineConfig } from 'vite'
  2. import uni from '@dcloudio/vite-plugin-uni'
  3. import { fileURLToPath, URL } from 'node:url'
  4. // https://vitejs.dev/config/
  5. export default defineConfig({
  6. transpileDependencies: ['@dcloudio/uni-ui'],
  7. plugins: [
  8. uni(),
  9. ],
  10. server: {
  11. proxy: {
  12. // 接口地址代理
  13. '/api': {
  14. target: 'http://kcapp.gzzzyd.com/', // 接口的域名
  15. secure: false, // 如果是https接口,需要配置这个参数
  16. changeOrigin: true, // 如果接口跨域,需要进行这个参数配置
  17. rewrite: path => path.replace(/^\/demo/, '/demo')
  18. },
  19. }
  20. },
  21. resolve: {
  22. alias: {
  23. '@': fileURLToPath(new URL('./src', import.meta.url))
  24. }
  25. }
  26. })