deer social fork for personal usage. but you might see a use idk. github mirror
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

more formats

ayla ecf2f354 bebe5931

+4
+4
src/lib/media/image-formats.ts
··· 1 + import {isNative} from '#/platform/detection' 2 + 1 3 export const IMAGE_FORMATS = [ 2 4 {label: 'AVIF', value: 'avif'}, 3 5 {label: 'WebP', value: 'webp'}, ··· 5 7 {label: 'PNG', value: 'png'}, 6 8 {label: 'GIF', value: 'gif'}, 7 9 {label: 'BMP', value: 'bmp'}, 10 + {label: 'ICO', value: 'ico'}, 11 + ...(isNative ? [{label: 'HEIC', value: 'heic'}] : []), 8 12 ]