vite.config.js 403 B

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