itty-bitty/firebase.json
2022-01-19 20:01:30 -08:00

25 lines
382 B
JSON

{
"hosting": {
"public": "docs",
"ignore": [
"**.md",
"**.sh",
"**/.*",
"**/.git/**",
"**/node_modules/**",
"firebase.json",
"LICENSE",
"samples/**",
"src/**"
],
"cleanUrls": true,
"trailingSlash": false,
"rewrites": [
{
"source": "/**/",
"function": "index"
}
]
}
}