mirror of
https://github.com/NetEase/tango.git
synced 2026-07-02 14:54:21 +08:00
11 lines
209 B
TypeScript
11 lines
209 B
TypeScript
import type { IApi } from 'umi';
|
|
|
|
export default (api: IApi) => {
|
|
api.addMiddlewares(() => {
|
|
return (req, res, next) => {
|
|
res.setHeader('Origin-Agent-Cluster', '?0');
|
|
next();
|
|
};
|
|
});
|
|
};
|