payload-cloudinary
Version:
A Cloudinary storage plugin for Payload CMS
44 lines • 605 B
JavaScript
export const VIDEO_EXTENSIONS = [
".mp4",
".webm",
".ogg",
".mov",
".avi",
".wmv",
".flv",
".mkv",
".m4v",
];
export const IMAGE_EXTENSIONS = [
".jpg",
".jpeg",
".png",
".gif",
".webp",
".svg",
".bmp",
".tiff",
];
export const RAW_EXTENSIONS = [
// Documents
".pdf",
".doc",
".docx",
".xls",
".xlsx",
".ppt",
".pptx",
".txt",
// Archives
".zip",
".rar",
".7z",
".tar",
".gz",
// Other
".csv",
".json",
".xml",
".md",
];
//# sourceMappingURL=constants.js.map