我有一个React应用,它消耗了Firebase(firestore)后端。 我还使用Firebase托管来托管SPA。我的firebase.json:
{
"firestore": {
"rules": "firestore.rules",
"indexes": "firestore.indexes.json"
},
"hosting": {
"public": "build",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "/",
"destination": "/index.html"
},
{
"source": "/app/**",
"function": "app"
}
]
},
"storage": {
"rules": "storage.rules"
},
"emulators": {
"functions": {
"port": 5001
},
"firestore": {
"port": 8080
},
"hosting": {
"port": 5000
},
"ui": {
"enabled": true
}
},
"functions": {
"source": "functions",
"predeploy": [
"npm --prefix \"$RESOURCE_DIR\" run lint"
]
}
}
因此,现在我测试了一些功能,并希望部署它们。 (我有一个functions
目录,其中包含package.json,node_modules和index.js,其中包含函数。)如果我只运行firebase deploy
,它将仅从build文件夹部署该版本。>
我的问题是: