mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 11:18:54 +08:00
fix: 代理插件兼容 array 写法 (#260)
This commit is contained in:
parent
fca58a5103
commit
57645b1adf
@ -6,8 +6,15 @@ const ASSET_EXT_NAMES = ['.ico', '.png', '.jpg', '.jpeg', '.gif', '.svg'];
|
|||||||
function proxyMiddleware(api) {
|
function proxyMiddleware(api) {
|
||||||
return (req, res, next) => {
|
return (req, res, next) => {
|
||||||
const proxyConfig = api.config.proxy;
|
const proxyConfig = api.config.proxy;
|
||||||
if (proxyConfig && Object.keys(proxyConfig).some(path => req.url.startsWith(path))) {
|
if (proxyConfig) {
|
||||||
return next();
|
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))) {
|
if (ASSET_EXT_NAMES.includes(extname(req.url))) {
|
||||||
return next();
|
return next();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user