I'm using Google Firebase: Database (to store my data) and Hosting (to run my web application). The web application is build with Webpack/Vue. Now I would like to use some Database Functions as a backend API for some server handling.
Is this possible? If so, how can I deploy two separate projects to Firebase Hosting and Functions?
firebase deploy --only hostingfrom the project dir with your hosting andfirebase deploy --only functionsfrom the project dir with your functions. - Michael Bleigh