12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- 'use strict';
- module.exports = {
-
- enable: true,
-
- encoding: 'utf8',
-
- formLimit: '10mb',
-
- jsonLimit: '10mb',
-
- textLimit: '2mb',
-
- strict: true,
-
- queryString: {
-
- arrayLimit: 100,
-
- depth: 5,
-
- parameterLimit: 1000,
- },
-
- enableTypes: ['json', 'form', 'text'],
-
- extendTypes: {
- text: ['text/xml', 'application/xml']
- }
- };
|