Is it possible to get verbose logging in Firebase's deploy tool?
I am trying to enable Angular Universal on my site, following this guide: https://hackernoon.com/deploying-angular-universal-v6-with-firebase-c86381ddd445
My app builds just fine, but when executing a firebase deploy
, I get this <sarcasm>
super helpful</sarcasm>
error message:
I would love to know what I am doing wrong, but as it appears Firebase really isn't sure. I checked the log screen under the Firebase console, but it is empty.
firebase --help
?firebase --debug
? That error looks like something is getting blocked. Like perhaps your network/isp/country is blocking access to the Functions endpoint? Unsure, but maybe the debug output will have clues. – Byrdls -lhR
in the functions directory for more clues. Also probably want to isolate Functions deploy withfirebase --only functions --debug deploy
or similar. Hop on firebase.community if you want to troubleshoot. – ByrdUnhandled Promise rejection: document is not defined ; Zone: <root> ; Task: Promise.then ; Value: ReferenceError: document is not defined at new CssKeyframesDriver (/user_code/node_modules/@angular/animations/bundles/animations-browser.umd.js:4246:26) at instantiateSupportedAnimationDriver (/user_code/node_modules/@angular/platform-browser/bundles/platform-browser-animations.umd.js:412:88)
– Strobile