Authored by 姜枫

fix maxFieldsSize

Showing 1 changed file with 1 additions and 1 deletions
... ... @@ -42,7 +42,7 @@ app.use(convert(body({
formLimit: '10mb',
textLimit: '10mb',
formidable: {
maxFieldsSize: 10 * 1024
maxFieldsSize: 10 * 1024 * 1024
}
})));
app.use(mount('/', webApp));
... ...