Merge alpha 0.0.5 to master #54

Merged
niggl merged 292 commits from dev into main 2020-12-23 17:05:35 +00:00
Showing only changes of commit 84a7f30a60 - Show all commits

View File

@ -6,6 +6,8 @@ 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;
}; };