如何使用TRPC为Next.js无服务器函数设置超时?

35g0bw71  于 2023-10-18  发布在  其他
关注(0)|答案(1)|浏览(87)

在NextJS Jmeter 板中,我看到对无服务器函数/api/trpc/dailyTrends.getDailyTrends的调用
我想在vercel.json文件中为它设置一个自定义超时:

{
  "functions": {
    "api/trpc/routers/dailyTrends.ts": {
      "maxDuration": 1
    }
  }
}

但这会导致

Error: The pattern "api/trpc/routers/dailyTrends.ts" defined in `functions` doesn't match any Serverless Functions.
Learn More: https://vercel.link/unmatched-function-pattern

当我试图部署到维塞尔。我已经尝试了很多命名方法,但对使用TRPC的无服务器函数命名感到困惑。我的实际函数名是什么?

twh00eeo

twh00eeo1#

这是你的完全限定文件路径吗?它必须是根目录的路径。

相关问题