Skip to content

Commit 743d07f

Browse files
QUICKFIX - disabled helmet
1 parent 78ef035 commit 743d07f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const path = require('path');
22
const favicon = require('serve-favicon');
33
const compress = require('compression');
44
const cors = require('cors');
5-
const helmet = require('helmet');
5+
// const helmet = require('helmet');
66
const bodyParser = require('body-parser');
77

88
const feathers = require('feathers');
@@ -49,7 +49,7 @@ if (app.get('sentry').dns !== undefined && app.get('sentry').dns !== 'SENTRY_DNS
4949

5050
// Enable CORS, security, compression, favicon and body parsing
5151
app.use(cors());
52-
app.use(helmet());
52+
// app.use(helmet());
5353
app.use(compress());
5454
app.use(bodyParser.json());
5555
app.use(bodyParser.urlencoded({ extended: true }));

0 commit comments

Comments
 (0)