From 688aaec8793ef1c52cb325c35a73c8e2be75db81 Mon Sep 17 00:00:00 2001 From: Philip Nagler-Frank Date: Mon, 22 Jun 2020 11:39:02 +0200 Subject: [PATCH] quickstart: fix installation instructions * install the stable version of @angular/fire * install required dependency firebase --- docs/install-and-setup.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/install-and-setup.md b/docs/install-and-setup.md index 78362ec95..9278968c0 100644 --- a/docs/install-and-setup.md +++ b/docs/install-and-setup.md @@ -12,12 +12,13 @@ The Angular CLI's `new` command will set up the latest Angular build in a new pr ### 2. Install AngularFire and Firebase +Now that you have a new project setup, install AngularFire and Firebase from npm. + ```bash -ng add @angular/fire@next +ng add @angular/fire +npm install firebase ``` -Now that you have a new project setup, install AngularFire and Firebase from npm. - ### 3. Add Firebase config to environments variable Open `/src/environments/environment.ts` and add your Firebase configuration. You can find your project configuration in [the Firebase Console](https://console.firebase.google.com). From the project overview page, click **Add Firebase to your web app**.