itty-bitty/firebase.json

26 lines
382 B
JSON
Raw Normal View History

2018-05-26 00:16:21 +00:00
{
"hosting": {
2022-01-12 14:49:23 +00:00
"public": "docs",
2018-05-26 00:16:21 +00:00
"ignore": [
"**.md",
"**.sh",
2018-05-26 00:16:21 +00:00
"**/.*",
"**/.git/**",
2018-05-26 00:16:21 +00:00
"**/node_modules/**",
"firebase.json",
2018-07-10 05:14:35 +00:00
"LICENSE",
"samples/**",
"src/**"
2018-05-26 00:16:21 +00:00
],
2022-01-20 04:01:30 +00:00
"cleanUrls": true,
"trailingSlash": false,
2018-05-26 00:16:21 +00:00
"rewrites": [
{
"source": "/**/",
"function": "index"
2018-05-26 00:16:21 +00:00
}
]
2018-05-26 00:16:21 +00:00
}
}