赞
踩
1、项目运行后只是代理了localhost但是未代理到ipv4导致项目运行报400
2,解决方案:
电脑--属性--环境配置--新建--%windir%/system32/wbem
vscode的环境配置:WBEM简介_hkbyest的博客-CSDN博客_wbem
3、在vue.config.js里配置
- devServer: {
- public: '111.11.11.11',
- port: '8080',
- index: 'index.html',
- proxy: {
- "/api": {
- target: "http://111.11.11/",
- pathRewrite: {
- "^/api": ""
- },
- ws: true,
- changeOrigin: true
- }
- }
- },
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。