使用 Express 为 Node 编写 Firebase 函数时,您需要为 Firebase onRequest() 函数设置路由。如果路由设置为 /myFunction 并且您将正确的重写添加到 firebase.json。函数触发。
快速路线
router.route("/myFunction").get(cloudController.myLogger);
Firebase 重写
rewrites": [
{
"source": "/myFunction",
"function": "myFunction"
}
]
当您使用 NextJS 时,您不会像使用 Express 那样专门设置路由。那么您将如何使用 NextJS 为 Firebase 函数设置路由?
我创建了一个 Cloud Function 并设置了重写,但意识到我还没有设置路由?你如何用 NextJS 做到这一点?