mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-12 12:20:23 +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",
|
|
]
|