先运行npm i @gauseen/nuxt-proxy -D
再nuxt.config.js的module.exports 里面添加如下代码
modules:[ ‘@nuxtjs/axios‘, // 请求代理配置,解决跨域 ‘@gauseen/nuxt-proxy‘, ], // 代理服务器 proxyTable: { "/apis": { target: "http://xxx.con", // 线上地址 // target: "http://192.168.1.106:7000", // 本地环境 pathRewrite: {"^/apis" : ""} } },
原文地址:https://www.cnblogs.com/hpx2020/p/9820990.html
时间: 2024-10-09 01:46:34