This thread talks about how GitHub processes GitHub Pages through Jekyll, which removes directories that start with _. Rainfly uses the _app directory for much of the JS files, which gets removed by GH Pages, giving a 404 when trying to access them.
To fix:
Add a .nojekyll file to the root directory in the gh-pages branch.
To reproduce:
This thread talks about how GitHub processes GitHub Pages through Jekyll, which removes directories that start with
_
. Rainfly uses the_app
directory for much of the JS files, which gets removed by GH Pages, giving a 404 when trying to access them.To fix:
Add a
.nojekyll
file to the root directory in thegh-pages
branch.