mirror of https://github.com/status-im/codimd.git
10 lines
216 B
JavaScript
10 lines
216 B
JavaScript
|
'use strict'
|
||
|
|
||
|
const bodyParser = require('body-parser')
|
||
|
|
||
|
// create application/x-www-form-urlencoded parser
|
||
|
exports.urlencodedParser = bodyParser.urlencoded({
|
||
|
extended: false,
|
||
|
limit: 1024 * 1024 * 10 // 10 mb
|
||
|
})
|