mirror of
https://github.com/linsa-io/linsa.git
synced 2026-02-24 11:25:00 +01:00
8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
export const MAX_FILE_SIZE = 5 * 1024 * 1024
|
|
export const ALLOWED_FILE_TYPES = [
|
|
"image/jpeg",
|
|
"image/png",
|
|
"image/gif",
|
|
"image/webp",
|
|
]
|