mirror of
https://github.com/directus/directus.git
synced 2026-02-16 22:41:21 -05:00
45 lines
635 B
TypeScript
45 lines
635 B
TypeScript
export const SYSTEM_ASSET_WHITELIST = [
|
|
{
|
|
key: 'directus-small-crop',
|
|
width: 64,
|
|
height: 64,
|
|
fit: 'crop',
|
|
quality: 80,
|
|
},
|
|
{
|
|
key: 'directus-small-contain',
|
|
width: 64,
|
|
height: 64,
|
|
fit: 'contain',
|
|
quality: 80,
|
|
},
|
|
{
|
|
key: 'directus-medium-crop',
|
|
width: 300,
|
|
height: 300,
|
|
fit: 'crop',
|
|
quality: 80,
|
|
},
|
|
{
|
|
key: 'directus-medium-contain',
|
|
width: 300,
|
|
height: 300,
|
|
fit: 'contain',
|
|
quality: 80,
|
|
},
|
|
{
|
|
key: 'directus-large-crop',
|
|
width: 800,
|
|
height: 600,
|
|
fit: 'crop',
|
|
quality: 80,
|
|
},
|
|
{
|
|
key: 'directus-large-contain',
|
|
width: 800,
|
|
height: 600,
|
|
fit: 'contain',
|
|
quality: 80,
|
|
},
|
|
];
|