So I followed the getting started guide for deploying a Firebase app with firebase-tools
and I was able to successfully deploy part of my app. I got the index.html
and all my .js scripts in the project_name/app/scripts/**
directories. I can verify this in dev tools. What I don't see loaded is any .js script file located in the bower_components/
directory which is basically the framework of my app (AngularJS, jQuery, Bootstrap, Firebase, etc.)
Why is this happening?
Screenshot of devtools
firebase.json
{
"firebase": "angfirenews",
"public": "app",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
}