Whats the difference between firebase web app and firebase hosting - firebase

what is the difference between the firebase web app and firebase hosting?
As far as i can tell the web app is used for an app thats actually just a browser,
and the firebase hosting is used just for websites.

Firebase for Web-Apps is a JavaScript library and Firebase Hosting is a web-hosting platform.
The JS can be loaded from just any web-server, but on Firebase Hosting it is better integrated with other the components in the Firebase ecosystem - and it can be deployed with the Firebase CLI.

Related

Deploying to 'warehouse-80c5e'

How to solve Firebase Hosting Setup Complete ?
While deploy this
Welcome
Firebase Hosting Setup Complete
You're seeing this because you've successfully setup Firebase Hosting. Now it's time to go build something extraordinary!
OPEN HOSTING DOCUMENTATION

How to link web app to a Firebase Hosting site using CLI

Is it possible to link the web app in my Firebase project to a Firebase Hosting site using CLI instead of the following console dialog?

More PWA apps on Firebase hosting, how to?

I would like to have more independent PWA apps on Firebase hosting. Each on separte subdomain, e.g.:
app1.site.com, app2.site.com, app3.site.com
I have no idea how to configure Firebase hosting and how to organize files and folders.
I have searched web but found nothing.
Firebase doesn't yet support hosting different web apps under the same Project. You will want to create a separate Firebase project for each of your PWAs, and connect the appropriate custom domain to each.

How to deploy Firebase Hosting and Cloud Functions for Firebase with different code base?

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?
I dont know if this is what you're looking for but you can either
firebase deploy --only hosting or database or functions
or install firebase in different

Deploying web apps that use firebase

Assuming that I used Firebase services on my web and I want to deploy the web app on a hosting site, do I have to do deploy it in Firebase hosting or any hosting site will do?
If you're using Firebase, then it already has a free hosting domain. So you can directly deploy it on Firebase. Here's a guide for you. If you want, you can also use a custom domain and it's free on Firebase now.
Web apps that use Firebase features (such as the Realtime Database, Storage, Authentication or any of the others) can be deployed any hosting service. Using Firebase Hosting is not required.

Resources