Skip to content
关注公众号,获取新课通知

兼容H5端和配置跨域问题


具体看课程演示

json5
{
	// 以上省略很多代码...
	"h5": {
		"devServer": {
			"https": false,
			"proxy": {
				"/api": {
					"target": "http://localhost:7001/",
					"changeOrigin": true,
					"ws": true,
					"pathRewrite": {
						"^/api": ""
					}
				}
			}
		}
	}
}