vite.config.js 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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: [uni()],
  8. server: {
  9. proxy: {
  10. // 接口地址代理
  11. "/api": {
  12. // target: 'http://kcapp.gzzzyd.com/', // 接口的域名
  13. target: "http://47.109.38.72:10887/",
  14. secure: false, // 如果是https接口,需要配置这个参数
  15. changeOrigin: true, // 如果接口跨域,需要进行这个参数配置
  16. },
  17. "/v1": {
  18. // target: 'http://kcapp.gzzzyd.com/', // 接口的域名
  19. target: "http://192.168.1.196:10900/",
  20. secure: false, // 如果是https接口,需要配置这个参数
  21. changeOrigin: true, // 如果接口跨域,需要进行这个参数配置
  22. rewrite: (path) => path.replace(/^\/demo/, "/demo"),
  23. },
  24. },
  25. },
  26. resolve: {
  27. alias: {
  28. "@": fileURLToPath(new URL("./src", import.meta.url)),
  29. },
  30. },
  31. });