mirror of
https://github.com/makeplane/plane.git
synced 2026-02-25 04:35:21 +01:00
15 lines
353 B
TypeScript
15 lines
353 B
TypeScript
export const MAX_FILE_SIZE = 5 * 1024 * 1024; // 5MB
|
|
|
|
export const ACCEPTED_AVATAR_IMAGE_MIME_TYPES_FOR_REACT_DROPZONE = {
|
|
"image/jpeg": [],
|
|
"image/jpg": [],
|
|
"image/png": [],
|
|
"image/webp": [],
|
|
};
|
|
export const ACCEPTED_COVER_IMAGE_MIME_TYPES_FOR_REACT_DROPZONE = {
|
|
"image/jpeg": [],
|
|
"image/jpg": [],
|
|
"image/png": [],
|
|
"image/webp": [],
|
|
};
|