How to deploy Angular App on Firebase? #39022
-
Select Topic AreaQuestion BodyHow to deploy React App on Firebase? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Hi @ws-jm! Just follow the simple steps given below to host your react app on firebase: Step 1: First we shall set up our Firebase project, go to its official website, and create a project as shown below. Step 2: Then we will enable Firebase Hosting by going into the hosting section under Build dropdown. Step 3: Then we will go through the hosting setup as described below. Step 4: Install Firebase Tools in your current react project using the command Step 5: We will initialize a firebase project in our React app by running the following command in the console in our root directory. Use the command
Step 6: Now we will run the following command to build our react app. Use the command Step 7: Now we just need to run the last command and our application will be deployed. Use the command This will deploy our project and also provide us the hosting link which we can visit. |
Beta Was this translation helpful? Give feedback.
-
|
Hi , @ws-jm Step 1: First we shall set up our Firebase project, go to its official website, and create a project as shown below. #Creating React Application: Step 1: Create a React application using the following command: Step 2: Install Firebase Tools: #Hosting Website: Step 1: First, we will initialize a firebase project in our React app by running the following command in the console in our root directory. |
Beta Was this translation helpful? Give feedback.
Hi , @ws-jm
I hope my article will be helpful to you.
Step 1: First we shall set up our Firebase project, go to its official website, and create a project as shown below.
Step 2: Then we will enable Firebase Hosting by going into the hosting section under Build dropdown.
Step 3: Then we will go through the hosting setup as described below.
#Creating React Application:
Step 1: Create a React application using the following command:
Step 2: Install Firebase Tools:
#Hosting Website:
Step 1: First, we will initialize a firebase project in our React app by running the following command in the console in our root dir…