mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 11:18:54 +08:00
29 lines
891 B
JavaScript
29 lines
891 B
JavaScript
import { extname } from 'node:path';
|
|
import historyFallback from 'connect-history-api-fallback';
|
|
|
|
const ASSET_EXT_NAMES = ['.ico', '.png', '.jpg', '.jpeg', '.gif', '.svg'];
|
|
|
|
function proxyMiddleware(api) {
|
|
return (req, res, next) => {
|
|
const proxyConfig = api.config.proxy;
|
|
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();
|
|
}
|
|
|
|
const history = historyFallback();
|
|
history(req, res, next);
|
|
};
|
|
}
|
|
|
|
export default proxyMiddleware;
|