2024-03-11 19:48:38 +00:00
|
|
|
export const MAX_FILE_SIZE = 10485760;
|
|
|
|
export const MAX_PHOTO_SIZE = 5242880;
|
|
|
|
export const MAX_VIDEO_SIZE = 52428800;
|
|
|
|
|
|
|
|
export const ACCEPT_SEND_MEDIA_TYPES_MAP = {
|
2024-05-21 07:41:31 +00:00
|
|
|
picture: ["jpg", "png"],
|
|
|
|
video: ["mp4"],
|
|
|
|
document: ["doc", "docx", "pdf", "txt", "xlsx", "csv"],
|
|
|
|
} as const;
|