在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的无服务器函数命名感到困惑。我的实际函数名是什么?
1条答案
按热度按时间twh00eeo1#
这是你的完全限定文件路径吗?它必须是根目录的路径。