Spaces:
Restarting
Restarting
Ignore indobert_finetuned and venv folders in firebase.json to prevent large file uploads to Firebase Hosting
21856bb | { | |
| "hosting": { | |
| "public": ".", | |
| "ignore": [ | |
| "firebase.json", | |
| "**/.*", | |
| "**/node_modules/**", | |
| "backend/**", | |
| "venv/**", | |
| "*.ipynb", | |
| "__pycache__/**" | |
| ], | |
| "rewrites": [ | |
| { | |
| "source": "/testing", | |
| "destination": "/testing.html" | |
| }, | |
| { | |
| "source": "**", | |
| "destination": "/index.html" | |
| } | |
| ] | |
| } | |
| } | |