We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e998dce commit 7e1f01fCopy full SHA for 7e1f01f
pdf-service.js
@@ -10,10 +10,12 @@ const compression = require('compression');
10
app.use(compression());
11
app.use(bodyParser.urlencoded({
12
extended: true,
13
- limit: process.env.REQUEST_SIZE_LIMIT || '250mb',
+ limit: process.env.REQUEST_SIZE_LIMIT || '400mb',
14
parameterLimit: 1000,
15
})); // support encoded bodies
16
-app.use(bodyParser.json()); // support json encoded bodies
+app.use(bodyParser.json({
17
18
+})); // support json encoded bodies
19
20
const storagePath = path.join(__dirname, 'storage');
21
if (!fs.existsSync(storagePath)) {
0 commit comments