From 35cba9761165504020901d744c53cd89379aa14f Mon Sep 17 00:00:00 2001 From: Saad Jutt Date: Mon, 2 May 2022 03:40:14 +0500 Subject: [PATCH] chore: commented helmet middleware --- api/src/app.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/src/app.ts b/api/src/app.ts index 9c44224..9ea2a53 100644 --- a/api/src/app.ts +++ b/api/src/app.ts @@ -41,7 +41,8 @@ export const csrfProtection = csrf({ cookie: cookieOptions }) /*********************************** * Handle security and origin * ***********************************/ -app.use(helmet()) +// TODO: fix monaco loader from npm package before enabling helmet +// app.use(helmet()) /*********************************** * Enabling CORS *