Before hosting my site everything was being displayed as it should and was working properly but after hosting the site on Firebase nothing was being displayed afterwards except a quick glimpse of the main page just for a frame.
These are the errors that i get on the console:
That’s how the main page should look:
And that’s how it’s displayed after hosting:
I checked the jQuery error and it said that it’s something with the index.html file but after fixing it it’s still the same.
index.html
<div id="root"></div>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script
src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"
></script>
That’s all I have but if you need more information in order to help me fix it I’d provide it. Thanks in advance!