nuxt.js prxoy代理

npm i @nuxtjs/proxy -D 在nuxt.config.js中配置
modules: [
'@nuxtjs/proxy',
],

在nuxt.confo.js中配置 proxy对象
// 数组写法
proxy: [
[
'/api',
{
target: 'http://localhost:3001', // api主机
pathRewrite: { '^/api' : '' }
}
],
[
'/age',
{
target: 'http://localhost:3002', // api主机
// pathRewrite: { '^/api' : '/' }
}
]
],
//对象写法
// pr

nuxt.js prxoy代理最先出现在Python成神之路

版权声明:
作者:ht
链接:https://www.techfm.club/p/15120.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>