[Vuejs]-How to configure firebase as nuxt plugin?

0👍

You need to also import the firebase/auth library if you need the auth feature

i.e.

import firebase from 'firebase/app';
import 'firebase/auth';

Leave a comment