You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<ahref="https://github.com/angular/angularfire">AngularFire</a> ❱ <ahref="../README.md#developer-guide">Developer Guide</a> ❱ Deploying SSR to Firebase App Hosting
3
+
</small>
4
+
5
+
# Deploying a server-rendered app to Firebase App Hosting
6
+
7
+
[Firebase App Hosting](https://firebase.google.com/docs/app-hosting) is Firebase's recommended way to deploy a server-side-rendered (SSR) Angular application. It builds your app in Google Cloud Build, runs the Node server, and serves it behind Google's CDN and proxy. This applies to either way of deploying to App Hosting, a connected GitHub repository or `firebase deploy` from your own machine; both build the same way and are affected the same way.
8
+
9
+
This guide covers one thing that trips up almost every new SSR deployment: **the server can silently stop server-rendering and fall back to client-side rendering (CSR), with no error anywhere obvious.** It explains how to detect that in 30 seconds and how to fix it.
10
+
11
+
## How to deploy
12
+
13
+
If you have not deployed yet, follow Firebase's own guides: [Get started with App Hosting](https://firebase.google.com/docs/app-hosting/get-started) to connect a GitHub repository (App Hosting builds and deploys on every push), or [Alternative ways to deploy](https://firebase.google.com/docs/app-hosting/alt-deploy) to deploy with `firebase deploy` from your own machine. Both build your app the same way in Google Cloud Build. The rest of this guide covers an Angular-specific issue you can hit once your app is deployed either way.
14
+
15
+
## The symptom: SSR silently downgrades to CSR
16
+
17
+
A freshly deployed Angular SSR app usually *looks* fine in a browser, the page renders and works. But the server may be sending an almost-empty HTML shell and letting the browser do all the rendering. When that happens you lose the whole point of SSR: crawlers and link previews see no content, and first paint on slow devices is worse.
18
+
19
+
There is no error in the deploy output and no error in the browser. The only trace is in your backend's server logs, which nothing prompts you to check.
20
+
21
+
App Hosting runs on Cloud Run, not Cloud Functions, so its logs live in Cloud Logging:
22
+
23
+
- In the Firebase console, open your backend and go to its **Logs** tab, then look at **Runtime logs**.
24
+
- From a terminal, use `gcloud`:
25
+
26
+
```bash
27
+
gcloud logging read'resource.type=cloud_run_revision AND resource.labels.service_name=YOUR_BACKEND_ID' --project YOUR_PROJECT_ID --limit 10
28
+
```
29
+
30
+
See Firebase's [View logs and metrics](https://firebase.google.com/docs/app-hosting/logging) guide for more.
31
+
32
+
## The 30-second check to run after every deploy
33
+
34
+
Pick an SSR route (not an SSG/prerendered one) and fetch it:
Angular's server renderer stamps a `ng-server-context` attribute on the app's root element:
41
+
42
+
-`ng-server-context="ssr"` - the route was server-rendered (SSR). This is what you want.
43
+
-`ng-server-context="ssg"` - the route was prerendered (SSG). Fine in itself, but not the SSR path this guide is about.
44
+
-**No `ng-server-context` at all** - the server returned a client-only shell and the browser is doing all the rendering. This is the silent CSR fallback described above, regardless of how the page looks in a browser.
45
+
46
+
## Why it happens
47
+
48
+
Angular's server engine only trusts the `X-Forwarded-*` headers a proxy attaches to a request when it is told to. App Hosting's proxy adds several of these headers (for example `x-forwarded-for` and `x-forwarded-proto`). If Angular does not trust the full set the platform sends, it treats the request as untrusted and de-optimizes to CSR on every request.
49
+
50
+
<!--
51
+
Maintainer note (2026-07-19): the two-step fix below is a workaround for a lag in
52
+
Firebase App Hosting's build image. The underlying fix (injecting the full
53
+
X-Forwarded-* set into NG_TRUST_PROXY_HEADERS) is already merged upstream in
54
+
GoogleCloudPlatform/buildpacks (commit 9346e60b, 2026-06-17) but had not reached
55
+
production builders as of 2026-07-19. Once it ships, `npm update` alone suffices
56
+
and the trustProxyHeaders step becomes optional; revisit and simplify this guide.
57
+
-->
58
+
59
+
## The Fix
60
+
61
+
Two steps are needed together.
62
+
63
+
**1. Update Angular to the latest patch:**
64
+
65
+
```bash
66
+
npm update @angular/core @angular/ssr
67
+
```
68
+
69
+
**2. Turn on proxy-header trust when you create the server engine.** In `src/server.ts`, pass `trustProxyHeaders: true` to `AngularNodeAppEngine`:
Redeploy, then run the 30-second check above. You should now see `ng-server-context="ssr"`.
80
+
81
+
### Why both steps
82
+
83
+
The two steps address different halves of the same handshake, and neither alone is enough:
84
+
85
+
- Recent Angular patches let the `trustProxyHeaders` engine option take effect on App Hosting; on older patches a platform environment variable wins instead, so the code option is ignored. The `npm update` gets you onto a patch where the option is honored.
86
+
- Even on the latest patch, you still have to *set* the option, so App Hosting's proxy headers are trusted.
87
+
88
+
This matches Firebase's own guidance. For the current, authoritative version of this fix (including any App Hosting or Angular version notes), see Firebase's [App Hosting troubleshooting guide](https://firebase.google.com/docs/app-hosting/troubleshooting#angular-proxy-trust).
89
+
90
+
> Note: App Hosting also has an experimental, opt-in local-build deploy option (you build on your own machine, then `firebase deploy`) in which the Firebase CLI applies this proxy-header configuration for you. It is off by default and not a documented, supported workflow, so this guide targets the standard source deploy; apply the fix above.
91
+
92
+
## Related Angular documentation
93
+
94
+
-[Angular SSR guide](https://angular.dev/guide/ssr)
0 commit comments