I am developing in angular 1.x
and using firebase hosting at the same time. Firebase hosting deployment is very fast when you have a small static website.
But in my case, my angular app requires a bunch of bower_components
files, 40k files to be specific. I understand that firebase hosting only hosts static websites, and I have to include these files upon deployment.
Yes I already used CDN links for most of the dependencies that I need, but those remaining non CDN dependencies are still too large.
Is there a way to deploy in firebase hosting in a much faster way, like git url or something?
Note
I already tried travis X firebase hosting approach but the problem is, travis only supports github and my project is in a private repository on bitbucket.