I started creating a web app with the firebase database. The firebase config is in a separate file that gets imported into the application.
Now I want to add firebase storage, but I can't seem to export both db and st. I get an error message saying that vuejs doesn't support named exports. I would export app instead and get rid of the db and st references, however my application already has tons of references to db. Is there a simple way to export db and st?
const app = Firebase.initializeApp(config);
const db = app.database();
const st = app.storage(); //this was recently added
export default db; //How do I add 'st' to the export in vuejs?