Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unrecognized command "link" when linking fonts in react native

Trying to link custom fonts in a react native project, when using npx react-native link I get an error saying Unrecognized command "link"

Is there a way to resolve this?

like image 643
max Avatar asked Aug 31 '25 18:08

max


1 Answers

Due to autolinking, link and unlink commands have been removed in React Native 0.69.

So, please try this:

npx react-native-asset
like image 60
ChaTho Avatar answered Sep 02 '25 08:09

ChaTho