firebase.json 258 B

123456789101112131415161718
  1. {
  2. "hosting": {
  3. "public": "dist",
  4. "site": "sagarhpa",
  5. "ignore": [
  6. "firebase.json",
  7. "**/.*",
  8. "**/node_modules/**"
  9. ],
  10. "rewrites": [
  11. {
  12. "source": "**",
  13. "destination": "/index.html"
  14. }
  15. ]
  16. }
  17. }