Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(mobile): remove app/index.js from concatenated bundle (#1267)
Currently, when building for production with --mobile, there is a runtime error because require is being called. This is because the app/index.js file is being concatenated into the final script, in addition to having already been processed by System bundler. Since it's already included in the bundle, it shouldn't be explicitly added to the concatenated JS file.
- Loading branch information