-
-
Notifications
You must be signed in to change notification settings - Fork 677
Expand file tree
/
Copy pathreact-native.config.js
More file actions
27 lines (27 loc) · 810 Bytes
/
react-native.config.js
File metadata and controls
27 lines (27 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
* See https://github.com/react-native-community/cli/blob/master/docs/configuration.md.
*
* To print the full config from the React Native CLI, run
* `react-native config`.
*/
module.exports = {
/**
* See https://github.com/react-native-community/cli/blob/master/docs/dependencies.md.
*
* Currently, we only use this to blacklist some native-code
* libraries, per-platform, that we don't want to be linked with
* "autolinking".
*
* For more about "autolinking", see
* https://github.com/react-native-community/cli/blob/master/docs/autolinking.md.
*/
dependencies: {
'react-native-vector-icons': {
platforms: {
// We're using a setup that doesn't involve linking
// `VectorIconsPackage` on Android.
android: null,
},
},
},
};