Skip to content

Commit

Permalink
feat: parser jsonld (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ealenn committed Feb 3, 2024
1 parent e2dd329 commit a40cee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ app.disable('x-powered-by');
// Parser
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.text());
app.use(bodyParser.json());
app.use(bodyParser.json({type: ['json', 'jsonld']}));
app.use(require('cookie-parser')());
app.use(require('multer')().array());

Expand Down

0 comments on commit a40cee6

Please sign in to comment.