12345678910111213141516171819 |
- {
- "firestore": {
- "rules": "firestore.rules",
- "indexes": "firestore.indexes.json"
- },
- "hosting": {
- "predeploy": [
- "cd packages/hoppscotch-app && mv .env.example .env && cd ../.. && npm install -g pnpm && pnpm i && pnpm run generate"
- ],
- "public": "packages/hoppscotch-app/dist",
- "ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
- "rewrites": [
- {
- "source": "**",
- "destination": "/index.html"
- }
- ]
- }
- }
|