我正在尝试将nthreads
设置为Access-Control-Allow-Origin
某个文件。
这是我的firebase.json文件:
*
但是它永远不会被设置:https://curious-athlete-131013.firebaseapp.com/bundle.js
答案 0 :(得分:2)
尝试将标题嵌套在托管下方而不是它自己的顶级节点:
{
"database": {
"rules": "database.rules.json"
},
"hosting": {
"public": "public",
"rewrites": [{
"source": "**",
"destination": "/index.html"
}],
"headers": [{
"source" : "bundle.js",
"headers" : [{
"key" : "Access-Control-Allow-Origin",
"value" : "*"
}]
}]
}
}
“可以通过在firebase.json文件中定义主机中的标题部分来指定自定义,特定于文件的标题:” - Firebase Docs