Answers for "how to deploy node and angular both in one project in firebase"

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
0

how to deploy firebase angular 10

$ ng add @angular/fire
Posted by: Guest on October-10-2020

Code answers related to "how to deploy node and angular both in one project in firebase"

Code answers related to "Javascript"

Browse Popular Code Answers by Language