mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Make the number of max entities per project configurable
This commit is contained in:
parent
d1d47b2767
commit
0c265db259
1 changed files with 1 additions and 1 deletions
|
@ -275,7 +275,7 @@ module.exports = {
|
|||
|
||||
robotsNoindex: process.env.ROBOTS_NOINDEX === 'true' || false,
|
||||
|
||||
maxEntitiesPerProject: 2000,
|
||||
maxEntitiesPerProject: parseInt(process.env.MAX_ENTITIES_PER_PROJECT || '2000', 10),
|
||||
|
||||
maxUploadSize: 50 * 1024 * 1024, // 50 MB
|
||||
multerOptions: {
|
||||
|
|
Loading…
Reference in a new issue