AngularFire 21 targets Angular 21 and the Firebase JS SDK v12. Most of the upgrade is handled for you by ng update.
ng update @angular/core @angular/cli # move your app to Angular 21 first
ng update @angular/fire # then AngularFire 21ng update @angular/fire runs a migration that:
- Aligns your
firebasedependency to^12.4.0. AngularFire 21 requires Firebase JS SDK 12. If your app still requestedfirebase11, npm would install both 11 and 12 side by side, and the two copies reject each other's objects at runtime. The migration updates the dependency and reinstalls so you end up with a single copy. Verify withnpm ls firebase. - Rewrites Vertex AI imports to AI Logic (see below).
The Vertex AI module has been renamed to Firebase AI Logic. The @angular/fire/vertexai entry point (and the older @angular/fire/vertexai-preview) are removed in favor of @angular/fire/ai:
Before (@angular/fire/vertexai) |
After (@angular/fire/ai) |
|---|---|
getVertexAI(app?, { location? }) |
getAI(app, { backend: new VertexAIBackend(location?) }) |
provideVertexAI |
provideAI |
VertexAI |
AI |
VertexAIError |
AIError |
VertexAIErrorCode |
AIErrorCode |
VertexAIModel |
AIModel |
VertexAIInstances |
AIInstances |
vertexAIInstance$ |
AIInstance$ |
VertexAIModule |
AIModule |
getVertexAI is not a plain rename. getAI already existed alongside it, and a plain getAI() call talks to the Gemini Developer API backend, not to Vertex AI. The equivalent of getVertexAI() is getAI(app, { backend: new VertexAIBackend() }), which is what the migration writes, so your app keeps calling the Vertex AI backend it was configured, enabled, and billed for. A location option moves into the VertexAIBackend constructor.
ng update @angular/fire rewrites these imports and identifiers for you and logs every getVertexAI call it rewrites. getGenerativeModel keeps its name.
Imports straight from the Firebase SDK (firebase/vertexai, gone in SDK 12) are rewritten to firebase/ai under the same rules. The rewrite parses your sources with the typescript package (an optional peer dependency of @angular/fire). Every Angular workspace already has it, but if the migration warns that it could not be resolved, install typescript and re-run. See ai.md for current usage.
Code the migration cannot rewrite safely is left in place with a warning. The import path itself still moves to the new entry point, so the leftover code fails to compile there. Nothing changes backends silently. It plays safe like this in four situations:
- Options it cannot read: when the
getVertexAIcall's options are not a literal{ location }object, or that literal references other symbols the migration is also rewriting. - The function used as a value: when
getVertexAIis stored or passed around rather than called directly. - Name collisions: when a local declaration in the file reuses an imported symbol's name, or the file already gets
getAIorVertexAIBackendfrom a source other than AI Logic. - Wildcard re-exports: when a file has
export * from '@angular/fire/vertexai', that line stays as written, because rewriting it would silently rename your re-exported public symbols. Replace it with named re-exports by hand.
A file where a named getVertexAI import is used in a way that cannot be rewritten keeps every use of its named getVertexAI imports in place (namespace-style ns.getVertexAI(...) calls are judged per call), and each skipped call is logged.
Two symbols were removed rather than renamed. The migration leaves their imports in place, which breaks loudly, and warns with guidance:
VertexAIOptions: the newAIOptionstakes abackendinstead of alocation, so rebuild the options by hand using the table above.getImagenModel: Firebase shut the Imagen models down in August 2026 and removed the API in firebase 12.18 (@firebase/ai2.15), so move image generation to the Gemini image models throughgetGenerativeModel.
- Angular 21 is required. AngularFire 21 peers
@angular/* ^21.0.0and does not support Angular 22 (a future AngularFire 22 will). - The obsolete
@angular/platform-browser-dynamicpeer dependency was removed. No action is needed.