vue项目启动时将localhost替换成指定ip地址
node启动vue项目时地址一般都是http://localhost:8080vue.config.js 中的host:‘localhost’换成host:‘你的本机ip’就可以了module.exports = {devServer: {// 更换iphost:'192.168.1.100',// 代理访问proxy: {'api': {target: 'http://121.89.205.18
·
node启动vue项目时地址一般都是http://localhost:8080
vue.config.js 中的host:‘localhost’换成host:‘你的本机ip’就可以了
module.exports = {
devServer: {
// 更换ip
host: '192.168.1.100',
// 更换端口号
port:8888,
// 代理访问
proxy: {
'api': {
target: 'http://121.89.205.189/api',
ws: true,
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
}
}
}
更多推荐
已为社区贡献1条内容
所有评论(0)