Description
Version info
Angular: 10@latest & 11@latest - same result
Firebase: 8.1.1
AngularFire: 6.1.1
Node: 12
Was all working fine on Firebase with SSR setup following the angularfire Guide.
We upgraded Firebase JS SDK and in order to get SSR working again, we had to remove the following from angular.json
:
"externalDependencies": [
"@firebase/firestore"
]
Hence the error TypeError: app.firestore is not a function
disappeared and SSR was working again, except on a sub-page that actually tries to load from data from firestore. When rendering this through SSR, we got the error:
Unhandled Promise rejection: ENOENT: no such file or directory, open '/workspace/dist/carchecker-ui/server/src/protos/google/firestore/v1/firestore.proto'
Expected behavior
Get SSR working with Firestore.
Actual behavior
I can choose a halfway working SSR solution by removing externalDependencies
in angular.json
(server) that seems to render some of the pages or breaking with missing Proto-Buffer stuff.
Or break SSR entirely with the TypeError: app.firestore is not a function
when having @firebase/firestore
in externalDependencies
in angular.json
.