vite.config.js 432 B

1234567891011121314151617
  1. import { defineConfig } from "vite";
  2. import uni from "@dcloudio/vite-plugin-uni"; // 注意此处,特别重要
  3. export default defineConfig({
  4. plugins: [uni()],
  5. server: {
  6. proxy: {
  7. "/api": {
  8. target: "http://banma8188.com/",
  9. changeOrigin: true,
  10. // rewrite 这个,需要根据具体项目进行判断是否需要
  11. rewrite: (path) => path.replace(/^\/api/, ""),
  12. },
  13. },
  14. },
  15. });