本地调试代理配置:
proxy: {
'/api': {
target: 'https:/xxxx',
changeOrigin: true,
},
},
报错:
[HPM] Error occurred while trying to proxy request /admin/api/v1/upload from
localhost:8000 to https://xxxx (UNABLE_TO_VERIFY_LEAF_SIGNATURE)
(https://nodejs.org/api/errors.html#errors_common_system_errors)
解决:设置证书免校验
proxy: {
'/api': {
target: 'https:/xxxx',
changeOrigin: true,
"secure": false,
},
},