DEV Community

Discussion on: Serverless - Is it worth it? Build a serverless chat webapp with Svelte and Firebase

Collapse
 
doomd profile image
Doomd • Edited

I encountered an error when I used your services/firebase.ts template...

export const googleAuth = firebase.auth.GoogleAuthProvider()
Enter fullscreen mode Exit fullscreen mode

should be:

export const googleAuth = new firebase.auth.GoogleAuthProvider()
Enter fullscreen mode Exit fullscreen mode

according to this:
stackoverflow.com/questions/519181...
...and indeed, your own code:
github.com/arnu515/serverless-chat...

Collapse
 
arnu515 profile image
arnu515

Ah yeah! Thanks! I'm gonna change it