Upload beautify

This commit is contained in:
2026-02-17 17:14:43 +01:00
parent b053c0cc48
commit 41287914aa
106 changed files with 4948 additions and 906 deletions

7
config/avatars.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
return [
'disk' => env('AVATAR_DISK', env('APP_ENV') === 'production' ? 's3' : 'public'),
'sizes' => [32, 64, 128, 256, 512],
'quality' => (int) env('AVATAR_WEBP_QUALITY', 85),
];

View File

@@ -4,4 +4,5 @@ declare(strict_types=1);
return [
'files_url' => env('FILES_CDN_URL', 'https://files.skinbase.org'),
'avatar_url' => env('AVATAR_CDN_URL', 'https://file.skinbase.org'),
];