Skip to content

Commit

Permalink
fix: increase json size limit from 100kb to 20mb
Browse files Browse the repository at this point in the history
  • Loading branch information
eisverticker committed May 21, 2021
1 parent 90f3636 commit dc7108f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/serve-mocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const SLASH_ALIAS = '---'

const app = express()
app.use(cors())
app.use(express.json())
app.use(express.json({ limit: '20mb' }))

/**
*
Expand Down

0 comments on commit dc7108f

Please sign in to comment.