我试图在 firebase 中运行 Express 应用程序,我正在按照这个官方视频的步骤操作:
我的 Express 应用实际上是在这个 URL 上运行的
但是在视频中,演示是在这个 url 上运行的
所以,我真的很困惑,我已经做了教程显示的一切
这是我在函数/index.js 上的代码
const functions = require('firebase-functions');
const express = require('express')
const app = express()
app.get('/test', (req, res) => {
res.send(`Well if i'm reading this the app is working`)
})
exports.app = functions.https.onRequest(app)
这是 firebase.json
{
"hosting": {
"public": "public",
"rewrite":[{
"source": "/test",
"function": "app"
}],
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
}
}
我做错了什么?如果我进入 localhost:5000 我只是得到公共静态 index.html,我只想自己控制应用程序。
希望大家帮我整理文档,谢谢!