You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
what is the latest recommendation for bundling an ignite-created app for the app store? (not using expo)
that seems to be missing from the documents unless it is hidden somewhere
on an older ignite project for iOS, we would use: react-native bundle --entry-file index.js --platform ios --dev false --reset-cache --minify false --verbose --bundle-output ios/main.jsbundle --assets-dest ios
we had to set minify to false for some bug related reasons in our code, but that of course can be true
this would give a main.jsbundle file, then we would make sure the iOS AppDelegate loaded this instead of the hot reloaded thing from metro bundler
then we could build our app manually from xcode for production
Beta Was this translation helpful? Give feedback.
All reactions