66dff7cf5f
Since the embedded examples in the docs app now include the local source files instead of CDN files, we need to include the source files into the folder that is deployed to Firebase hosting
24 lines
525 B
JSON
24 lines
525 B
JSON
{
|
|
"hosting": {
|
|
"public": "uploadDocs",
|
|
"ignore": [
|
|
"/index.html",
|
|
"/index-debug.html",
|
|
"/index-jquery.html"
|
|
],
|
|
"rewrites": [
|
|
{
|
|
"source": "/",
|
|
"destination": "/index-production.html"
|
|
},
|
|
{
|
|
"source": "/index.html",
|
|
"destination": "/index-production.html"
|
|
},
|
|
{
|
|
"source": "**/*!(.jpg|.jpeg|.gif|.png|.html|.js|.map|.json|.css|.svg|.ttf|.woff|.woff2|.eot)",
|
|
"destination": "/index-production.html"
|
|
}
|
|
]
|
|
}
|
|
} |