vue3+vite 本地代理

请求地址

http://localhost:xxxx/xx-api

vite.config.js配置

...
      server: {
            proxy: {
                "/xx-api": {
                    target: "https://xxxxx.putyy.com/admin",//你的接口地址
                    changeOrigin: true,
                    rewrite: path => path.replace(/^\/xx-api/, '')
                }
            }
        },
...

说明

本地请求 http://localhost:xxxx/xx-api/* 将会转发到 https://xxxxx.putyy.com/admin/*

LW放下的博客
请先登录后发表评论
  • latest comments
  • 总共0条评论