fix: 代理插件兼容 array 写法 (#260)
Some checks are pending
Gitee Mirror / build (push) Waiting to run

This commit is contained in:
qlin 2024-11-27 11:31:20 +08:00 committed by GitHub
parent b1ea675f40
commit 7c01ee979e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,8 +6,15 @@ const ASSET_EXT_NAMES = ['.ico', '.png', '.jpg', '.jpeg', '.gif', '.svg'];
function proxyMiddleware(api) {
return (req, res, next) => {
const proxyConfig = api.config.proxy;
if (proxyConfig && Object.keys(proxyConfig).some(path => req.url.startsWith(path))) {
return next();
if (proxyConfig) {
if (Array.isArray(proxyConfig)) {
if (proxyConfig.some(item => item.context.some(path => path && req.url.startsWith(path)))) {
return next();
}
}
else if (Object.keys(proxyConfig).some(path => req.url.startsWith(path))) {
return next();
}
}
if (ASSET_EXT_NAMES.includes(extname(req.url))) {
return next();