From 2aa8c690f1e0e1ccf649f5a872fb07cb107bbc47 Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Tue, 15 Nov 2022 18:09:53 +1300 Subject: [PATCH] Ensure only MaterialIcon fonts are loaded for ios --- react-native.config.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 react-native.config.js diff --git a/react-native.config.js b/react-native.config.js new file mode 100644 index 0000000..84f83f0 --- /dev/null +++ b/react-native.config.js @@ -0,0 +1,5 @@ +module.exports = { + dependencies: { + 'react-native-vector-icons': {platforms: {ios: null}}, + } +}