1

How to analyze react-native bundle size? App was created using create-react-native-app.

Stanislav Mayorov
  • 4,298
  • 5
  • 21
  • 44

1 Answers1

5

You can add this library react-native-bundle-visualizer to your project:

yarn add --dev react-native-bundle-visualizer

Then

yarn run react-native-bundle-visualizer

should show a visualization of the react-native bundle.

zarcode
  • 2,465
  • 17
  • 31