mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 04:47:29 -08:00
🐛 Fix PayloadTooLargeError issue
This commit is contained in:
parent
0e89166013
commit
0b7049e27b
|
@ -527,6 +527,7 @@ class App {
|
|||
// support application/x-www-form-urlencoded post data
|
||||
this.app.use(
|
||||
bodyParser.urlencoded({
|
||||
limit: `${this.payloadSizeMax}mb`,
|
||||
extended: false,
|
||||
verify: (req, res, buf) => {
|
||||
// @ts-ignore
|
||||
|
|
Loading…
Reference in a new issue