Compare commits

..

No commits in common. "84a7f30a60a5a831b080111a660230bc65b4958f" and "f3008979f30b3a4d5de87ad415b06b813f8bd1a2" have entirely different histories.

View File

@ -6,8 +6,6 @@ import { Application } from "express";
*/ */
export default async (app: Application) => { export default async (app: Application) => {
app.enable('trust proxy'); app.enable('trust proxy');
app.disable('x-powered-by');
app.disable('x-served-by');
app.use(cookieParser()); app.use(cookieParser());
return app; return app;
}; };