itty-bitty/firebase.json

24 lines
389 B
JSON
Raw Normal View History

2018-05-26 00:16:21 +00:00
{
"hosting": {
2019-03-18 14:41:54 +00:00
"public": "public",
2018-05-26 00:16:21 +00:00
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**",
2018-06-10 14:41:58 +00:00
"samples/**",
2018-07-10 05:14:35 +00:00
"src/**",
"LICENSE",
"**.md",
2019-03-18 14:41:54 +00:00
"**/.git/**",
"**.sh"
2018-05-26 00:16:21 +00:00
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"cleanUrls": true,
"trailingSlash": false
}
2018-05-28 17:20:08 +00:00
}