Firebase节点js错误:无法理解要部署/服务的目标

roejwanj  于 2022-12-24  发布在  其他
关注(0)|答案(2)|浏览(114)

我正在遵循此教程:https://www.youtube.com/watch?v=LOeioOKUKI8&t=484s
尝试本地部署应用程序时出现以下错误:
无法理解要部署/服务的目标。firebase.json中没有匹配“--only functions hosting”的目标。如果您使用PowerShell,请确保在所有逗号分隔的列表两边加上引号(例如:--仅“功能、消防仓库”)。
我部署到firebase,但有一个空屏幕,所以我的代码缺乏一些必要的东西。

{
  "hosting": {
    "public": "public",
    "rewrites": [{
      "source": "/timestamp",
      "function": "app"
    }],
    "ignore": [
      "firebase.json",
      "**/.*",
      "**/node_modules/**"
    ]
  }
}
const functions = require("firebase-functions");
const express = require('express');

const app = express();
app.get('/timestamp', (req,res)=>{
    res.send('${Date.now()}')
})

exports.app = functions.https.onRequest(app);
7tofc5zh

7tofc5zh1#

打开firebase.json文件并粘贴以下内容:

{
   "hosting": {
   "public": "public"
  }
}
bnl4lu3b

bnl4lu3b2#

{"托管":{"公共":"dist/项目名称","忽略":["firebase.json","/. *","/节点模块/**"],"重写":[{"来源":"**","目的地":"/索引. html "}]}}

相关问题