2
0

🛂 Reduce sendMessage serverless function max memory

This commit is contained in:
Baptiste Arnaud
2023-11-12 08:24:34 +01:00
parent dd4de582a9
commit bac2393b5d

View File

@ -1,13 +1,16 @@
{
"functions": {
"src/pages/api/v2/[...trpc].ts": {
"maxDuration": 150
"maxDuration": 150,
"memory": 500
},
"src/pages/api/v1/[...trpc].ts": {
"maxDuration": 150
"maxDuration": 150,
"memory": 500
},
"src/pages/api/typebots/[typebotId]/blocks/[blockId]/executeWebhook.ts": {
"maxDuration": 150
"maxDuration": 150,
"memory": 500
}
}
}