一 在根目錄創建 vue.config.js
二 在vue.config.js中寫以下代碼
上代碼
// vue.config.js module.exports = { devServer: { proxy: { '/api': { target: 'https://www.XXX.net/', //對應自己的接口 changeOrigin: true, ws: true, pathRewrite: { '/api': '/api' } } } } }
三 使用
正常使用就完事了