firebase.json•859 B
{
"hosting": {
"target": "7pace-mcp",
"public": "public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**",
"src/**",
"*.md",
"package*.json",
"tsconfig.json",
"test-*.js"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"headers": [
{
"source": "**/*.@(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2)",
"headers": [
{
"key": "Cache-Control",
"value": "public,max-age=31536000,immutable"
}
]
},
{
"source": "**/*.@(html|json)",
"headers": [
{
"key": "Cache-Control",
"value": "public,max-age=3600"
}
]
}
],
"cleanUrls": true,
"trailingSlash": false
}
}