Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Include ghost hook to statically export fonts (#5553)

authored by

Eric Bailey and committed by
GitHub
5a98ea68 e33b2b1b

+14
+14
src/alf/fonts.ts
··· 1 + import {useFonts} from 'expo-font' 2 + 1 3 import {isWeb} from '#/platform/detection' 2 4 import {Device, device} from '#/storage' 3 5 ··· 63 65 */ 64 66 style.fontVariant = ['no-contextual'] 65 67 } 68 + 69 + /* 70 + * IMPORTANT: This is unused. Expo statically extracts these fonts. 71 + * 72 + * All used fonts MUST be configured here. Unused fonts can be commented out. 73 + */ 74 + export function DO_NOT_USE() { 75 + return useFonts({ 76 + InterVariable: require('../../assets/fonts/inter/InterVariable.ttf'), 77 + 'InterVariable-Italic': require('../../assets/fonts/inter/InterVariable-Italic.ttf'), 78 + }) 79 + }