appwrite/app/config/storage/outputs.php

10 lines
180 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',
2022-05-23 14:54:50 +00:00
];