I am attempting to reduce the firebase library size in my vuejs app. I currently import firebase as
import * as firebase from 'firebase';
require("firebase/firestore");
Inside my vendor file I have the database and messaging services but I have no use for them.
How do I go about only importing auth and firestore into firebase object?