我之前已经在vue-config.js中配置了devserver,
devServer: {
proxy: {
"/api/*": {
target: "http://localhost:3001",
secure: false
}
}
}
在nuxt-SPA中,此功能无效。我的前台仍在将API调用发送到同一来源localhost:3000。如何配置对不同端口的API调用?
答案 0 :(得分:0)
重复 How to use webpack dev proxy with Nuxt https://github.com/nuxt/nuxt.js/issues/762
由于应用具有通用性,因此Nuxts没有Webpack代理。