mirror of https://github.com/nocodb/nocodb
Pranav C
1 month ago
3 changed files with 17 additions and 4 deletions
@ -1,4 +1,8 @@ |
|||||||
export const NC_LICENSE_KEY = 'nc-license-key'; |
export const NC_LICENSE_KEY = 'nc-license-key'; |
||||||
export const NC_APP_SETTINGS = 'nc-app-settings'; |
export const NC_APP_SETTINGS = 'nc-app-settings'; |
||||||
|
export const NC_NON_ATTACHMENT_FIELD_SIZE = |
||||||
|
+process.env['NC_NON_ATTACHMENT_FIELD_SIZE'] || 10 * 1024 * 1024; // 10 MB
|
||||||
export const NC_ATTACHMENT_FIELD_SIZE = |
export const NC_ATTACHMENT_FIELD_SIZE = |
||||||
+process.env['NC_ATTACHMENT_FIELD_SIZE'] || 20 * 1024 * 1024; // 20 MB
|
+process.env['NC_ATTACHMENT_FIELD_SIZE'] || 20 * 1024 * 1024; // 20 MB
|
||||||
|
export const NC_MAX_ATTACHMENTS_ALLOWED = |
||||||
|
+process.env['NC_MAX_ATTACHMENTS_ALLOWED'] || 10; |
||||||
|
Loading…
Reference in new issue