appwrite/app/config/storage/outputs.php

13 lines
271 B
PHP
Raw Normal View History

2020-06-30 04:32:36 +00:00
<?php
2020-06-30 04:33:47 +00:00
return [ // Accepted outputs files
2020-06-30 04:32:36 +00:00
'jpg' => 'image/jpeg',
'jpeg' => 'image/jpeg',
'gif' => 'image/gif',
'png' => 'image/png',
'webp' => 'image/webp',
2024-10-02 05:59:46 +00:00
// 'heic' => 'image/heic',
// 'heics' => 'image/heic',
'avif' => 'image/avif'
2022-05-23 14:54:50 +00:00
];