firebase.json 437 B

12345678910111213141516171819
  1. {
  2. "firestore": {
  3. "rules": "firestore.rules",
  4. "indexes": "firestore.indexes.json"
  5. },
  6. "hosting": {
  7. "predeploy": [
  8. "mv .env.example .env && npm install -g pnpm && pnpm i && pnpm run generate"
  9. ],
  10. "public": "packages/hoppscotch-web/dist",
  11. "ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
  12. "rewrites": [
  13. {
  14. "source": "**",
  15. "destination": "/index.html"
  16. }
  17. ]
  18. }
  19. }