When building artifacts on EAS, one common issue developers face is accidentally excluding necessary files by adding them to the .gitignore file. Before starting the build process, itโs crucial to double-check that important configuration filesโsuch as app.json, eas.json, or environment variablesโare not mistakenly ignored by Git.
To prevent this, thoroughly review your .gitignore file and ensure that any essential project files required for your build arenโt listed there. Ignoring these files can cause your build to fail or miss critical configurations, leading to errors in your production release.
By maintaining a clean and accurate .gitignore, you ensure a smoother EAS build process without unexpected issues.
Keep building!
Top comments (1)
You can also use
.easignore
which will take precedence over.gitignore
, if you have some files you want to provide to the builder that you don't want in your.gitignore
file. docs.expo.dev/build-reference/easi...