The Changes Does not Reflect on The Site #58742
-
|
I don't know what went wrong, but I already rebuild my web app, also already commit the changes that I made, you can check on my repository here: https://github.com/aldoprogrammer/umb-chatbot And the live site still does not reflect the changes, https://github.com/aldoprogrammer/umb-chatbot |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
Hello, I recommend you make sure some things for your project.
I hope this will be helpful for you. Regards, |
Beta Was this translation helpful? Give feedback.
-
|
Hello, @aldoprogrammer It appears that you're facing an issue where the changes you made to your web app and committed to your repository aren't being reflected on the live site. To troubleshoot this problem, you can try the following steps:
|
Beta Was this translation helpful? Give feedback.
-
|
I found the problem and solution, so that the website itself it still accessing the cache of the old version, so all I did is to By using this methode, so that the website will not access the website cache which if it does, it still showing the old version even though we already push the changes on github repository. |
Beta Was this translation helpful? Give feedback.
I found the problem and solution, so that the website itself it still accessing the cache of the old version, so all I did is to
remove the branch gh-pages from VS Code, make sure that you already change the branch to master so that you are allowed to remove gh-pages branch, then go to VS Code, start rebuild it again usingnpm run build, after that push the changes. go to the settings, and change it again frommaster branchtogh-pagesagain, then the changes reflected.By using this methode, so that the website will not access the website cache which if it does, it still showing the old version even though we already push the changes on github repository.