I a have Vue.js (webpack
) project running on my Github pages. The problem is Github pages do not display the recent commit, Instead, it only displays the initial commit's content. what I'm doing is:
$ git commit -m "update"
$ git push origin master
then:
$ git checkout gh-pages
$ git rebase master
$ git push origin gh-pages
I see that the branches gets updates, but no content will be changed on my page.
I even tried deleting the gh-branch and recreate it again but it didn't solve the problem. I even deleted the browser cache.
Note that when I'm running the dist
folder locally everything is ok.
here is the link to the repo.
I sincerely appreciate any help.