Skip to content

Commit

Permalink
Increase the bodyParser memory limit
Browse files Browse the repository at this point in the history
  • Loading branch information
CvX committed Jun 24, 2019
1 parent 0aaa6a9 commit 38dba06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ module.exports = {
},

_fastbootRenderingMiddleware(app) {
app.post('/__nock-proxy', bodyParser.json(), (req, res) => {
app.post('/__nock-proxy', bodyParser.json({ limit: '50mb' }), (req, res) => {
nockInterface.dispatchEvent(req.body).then(() => {
let body = JSON.stringify(
nockInterface.lastMessage,
Expand Down

0 comments on commit 38dba06

Please sign in to comment.