Answers for "deploy app on firebase"

1

firebase deploy

firebase init
firebase deploy
Posted by: Guest on August-12-2021
2

deploying angular app to firebase

{
  "hosting": {
    "public": "dist/your_application_name",
    "ignore": [
      "firebase.json",
      "**/.*",
      "**/node_modules/**"
    ],
    "rewrites": [
      {
        "source": "**",
        "destination": "/index.html"
      }
    ]
  }
}
Posted by: Guest on September-08-2020
1

firebase deploy

///////// FIREBASE DEPLOY USING COMMAND LINE //////////////////

// Goto Terminal and  Login to firebase below command

=> firebase login

=> firebase init

=> select Hosting: Configure and deploy ...  (press space for select) 
// press enter after selecting

=> Use an existing project
// select the project name which you built in firebase

// imp type build 
=> What do you want to use as your public directory? build

// And then Y for single page web App
=> Configure as a single-page app? Yes

-----------------------NOW RUN-----------------------

=> npm run build

=> firebase deploy

!!!!! Congrats you just deploy your app !!!!!
Posted by: Guest on October-09-2020

Code answers related to "deploy app on firebase"

Code answers related to "Javascript"

Browse Popular Code Answers by Language