所以我有我的自定义库my-library
,有一个react-native.config.js
文件。
module.exports = {
dependency: {
assets: ['Fonts'], // This lib contains custom fonts.
}
};
当我在其他项目中的某个地方yarn install my-library
时,我需要手动运行react-native link my-library
以使字体在我的应用程序中可用。
是否可以在yarn install
上自动链接它?
阅读此 https://facebook.github.io/react-native/blog/2019/07/03/version-60#native-modules-are-now-autolinked
在大多数情况下,您不再需要运行react-native link
。