Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/analytics.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ As a prerequisite, ensure that `AngularFire` has been added to your project via
ng add @angular/fire
```

Provide a Analytics instance in the application's `app.config.ts`:
Provide an Analytics instance in the application's `app.config.ts`:

```ts
import { provideFirebaseApp, initializeApp } from '@angular/fire/app';
Expand Down
4 changes: 2 additions & 2 deletions docs/app-check.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ As a prerequisite, ensure that `AngularFire` has been added to your project via
ng add @angular/fire
```

Provide a App Check instance in the application's `app.config.ts`:
Provide an App Check instance in the application's `app.config.ts`:

```ts
import { provideFirebaseApp, initializeApp } from '@angular/fire/app';
Expand Down Expand Up @@ -54,4 +54,4 @@ AngularFire wraps the Firebase JS SDK to ensure proper functionality in Angular,

Update the imports from `import { ... } from 'firebase/app-check'` to `import { ... } from '@angular/fire/app-check'` and follow the official documentation.

[Getting Started](https://firebase.google.com/docs/app-check/web/recaptcha-enterprise-provider) | [API Reference](https://firebase.google.com/docs/reference/js/app-check)
[Getting Started](https://firebase.google.com/docs/app-check/web/recaptcha-provider) | [API Reference](https://firebase.google.com/docs/reference/js/app-check)
2 changes: 1 addition & 1 deletion docs/auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ As a prerequisite, ensure that `AngularFire` has been added to your project via
ng add @angular/fire
```

Provide a Auth instance in the application's `app.config.ts`:
Provide an Auth instance in the application's `app.config.ts`:

```ts
import { provideFirebaseApp, initializeApp } from '@angular/fire/app';
Expand Down
2 changes: 1 addition & 1 deletion docs/compat.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# AngularFire
The official [Angular](https://angular.io/) library for [Firebase](https://firebase.google.com/).
The official [Angular](https://angular.dev/) library for [Firebase](https://firebase.google.com/).

<strong><pre>ng add @angular/fire</pre></strong>

Expand Down
2 changes: 1 addition & 1 deletion docs/compat/auth/router-guards.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Route users with AngularFire guards

`AngularFireAuthGuard` provides a prebuilt [`canActivate` Router Guard](https://angular.io/api/router/CanActivate) using `AngularFireAuth`. By default unauthenticated users are not permitted to navigate to protected routes:
`AngularFireAuthGuard` provides a prebuilt [`canActivate` Router Guard](https://angular.dev/api/router/CanActivate) using `AngularFireAuth`. By default unauthenticated users are not permitted to navigate to protected routes:

> **NOTE**: [AngularFire has a new tree-shakable API](../../../README.md#developer-guide), you're looking at the documentation for the compatability version of the library. [See the v7 upgrade guide for more information on this change.](../../version-7-upgrade.md).

Expand Down
16 changes: 0 additions & 16 deletions docs/firebase.json

This file was deleted.

82 changes: 0 additions & 82 deletions docs/install-angular-cli-windows10.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/zones.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Instability can be difficult to track down. To help with debugging, AngularFire
There are three logging levels in AngularFire:

* **Silent**: when the logging level is set to silent only the above banner is displayed when AngularFire APIs are called outside of an injection context, this is the default when using Zoneless change-detection.
* **Warn**: when the logging level is set to warn, only blocking reads, long-lived tasks, and APIs with high risk of destabilizing your application are called, this is the default when using ZoneJS.
* **Warn**: when the logging level is set to warn, only blocking reads, long-lived tasks, and APIs with high risk of destabilizing your application are logged, this is the default when using ZoneJS.
* **Verbose**: when the logging level is set to verbose, all AngularFire APIs called outside of an injection context are logged—helping you track down APIs that may be destabilizing your application

You can change the log-level like so:
Expand Down
Loading