Home > Blockchain >  Where to find documentation on `react-native.config.js` file?
Where to find documentation on `react-native.config.js` file?

Time:12-17

I have created new React Native project using its CLI. One of the generated files is react-native.config.js. I cannot find any documentation on it. It's not mentioned on the React Native website and I couldn't find documentation for the CLI.

CodePudding user response:

react-native-config.js is used by the React Native CLI. You can read about it in the CLI docs here: https://github.com/react-native-community/cli/blob/main/docs/configuration.md

  • Related