appwrite/app/config/storage/outputs.php

13 lines
240 B
PHP
Raw Normal View History

2020-06-30 04:32:36 +00:00
<?php
2025-01-21 11:09:16 +00:00
return [
// Accepted outputs files
"jpg" => "image/jpeg",
"jpeg" => "image/jpeg",
"png" => "image/png",
"webp" => "image/webp",
"heic" => "image/heic",
"avif" => "image/avif",
"gif" => "image/gif",
2022-05-23 14:54:50 +00:00
];