Compare commits

..

No commits in common. "b6cf3b24d42c38952684e8ec95d8cd5950af4940" and "1bf6d3d56422f6cb8b9fb0e0c39a8b8f4f30563b" 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;
}; };