mirror of
https://github.com/appwrite/appwrite
synced 2026-05-01 18:38:05 +00:00
12 lines
271 B
PHP
12 lines
271 B
PHP
<?php
|
|
|
|
return [ // Accepted outputs files
|
|
'jpg' => 'image/jpeg',
|
|
'jpeg' => 'image/jpeg',
|
|
'gif' => 'image/gif',
|
|
'png' => 'image/png',
|
|
'webp' => 'image/webp',
|
|
// 'heic' => 'image/heic',
|
|
// 'heics' => 'image/heic',
|
|
'avif' => 'image/avif'
|
|
];
|