mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
Merge pull request #26915 from overleaf/em-jd-increase-max-request-size
Increase web's max JSON request size to 12 MB GitOrigin-RevId: 91da31e14570e770553049d8376ae1686eba3336
This commit is contained in:
@@ -710,12 +710,13 @@ module.exports = {
|
||||
// - the doc content
|
||||
// - text ranges spanning the whole doc
|
||||
//
|
||||
// There's also overhead required for the JSON encoding and the UTF-8 encoding,
|
||||
// theoretically up to 3 times the max doc length. On the other hand, we don't
|
||||
// want to block the event loop with JSON parsing, so we try to find a
|
||||
// practical compromise.
|
||||
// There's also overhead required for the JSON encoding and the UTF-8
|
||||
// encoding, theoretically up to 6 times the max doc length (e.g. a document
|
||||
// entirely filled with "\u0011" characters). On the other hand, we don't want
|
||||
// to block the event loop with JSON parsing, so we try to find a practical
|
||||
// compromise.
|
||||
max_json_request_size:
|
||||
parseInt(process.env.MAX_JSON_REQUEST_SIZE) || 6 * 1024 * 1024, // 6 MB
|
||||
parseInt(process.env.MAX_JSON_REQUEST_SIZE) || 12 * 1024 * 1024, // 12 MB
|
||||
|
||||
// Internal configs
|
||||
// ----------------
|
||||
|
||||
Reference in New Issue
Block a user