PLN-summary / firebase.json
snickerdust's picture
Ignore indobert_finetuned and venv folders in firebase.json to prevent large file uploads to Firebase Hosting
21856bb
raw
history blame contribute delete
395 Bytes
{
"hosting": {
"public": ".",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**",
"backend/**",
"venv/**",
"*.ipynb",
"__pycache__/**"
],
"rewrites": [
{
"source": "/testing",
"destination": "/testing.html"
},
{
"source": "**",
"destination": "/index.html"
}
]
}
}