summaryrefslogtreecommitdiff
path: root/frontend/lib
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/lib')
-rw-r--r--frontend/lib/constants.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/lib/constants.ts b/frontend/lib/constants.ts
index 8f74dd1..173e90d 100644
--- a/frontend/lib/constants.ts
+++ b/frontend/lib/constants.ts
@@ -1,5 +1,5 @@
1// Upload configuration constants 1// Upload configuration constants
2export const UPLOAD_MAX_FILE_SIZE = 100 * 1024 * 1024; // 100MB 2export const UPLOAD_MAX_FILE_SIZE = 4096 * 1024 * 1024; // 100MB
3export const UPLOAD_MAX_FILES = 10; // Maximum files per upload 3export const UPLOAD_MAX_FILES = 10; // Maximum files per upload
4export const UPLOAD_ALLOWED_TYPES = [ 4export const UPLOAD_ALLOWED_TYPES = [
5 // Documents 5 // Documents
@@ -36,4 +36,4 @@ export const UPLOAD_ALLOWED_TYPES = [
36 'text/html', 36 'text/html',
37 'text/css', 37 'text/css',
38 'application/xml' 38 'application/xml'
39]; // Empty array means all types allowed \ No newline at end of file 39]; // Empty array means all types allowed