angular-firestarter
angular-firestarter copied to clipboard
🍱 :fire: Angular + Firebase Progressive Web App Starter
The npm run build:all will fail if the /functions directory exist when deploying. This will exclude that directory for building and deploying the site only.
ng --version Your global Angular CLI version (7.0.2) is greater than your local version (6.0.1). The local Angular CLI version is used. To disable this warning use "ng config -g...
Fixes Firebase console warning. ``` It looks like you're using the development build of the Firebase JS SDK. When deploying Firebase apps to production, it is advisable to only import...
When I do `firebase deploy` I get the following: ``` === Deploying to 'fireapp-a85bd'... i deploying functions, hosting Running command: npm --prefix "$RESOURCE_DIR" run lint > functions@ lint /Users/x/Sites/firestarter/functions >...
I had an issue where this kept showing up in the console. It was due to the firebase imports in auth.service.ts Fix: auth.service.ts: import * as firebase from 'firebase/app'; and...
``` switchMap(user => { if (user) { return this.afs.doc(`users/${user.uid}`).valueChanges(); } else { return of(null); } }) ``` This function in the `auth.service.ts` constructor, is giving the following error during compilation:...
Hi there, this is not an issue but can you share a quick tutorial on youtube about how to pass firestarter from bulma css to material design? or any easy...
file upload is not workingfile upload is not working.
I'm not completely clear on how to get the prerender functionality working for routes that use route params to fetch the component data from an api. My route is currenlty...