#Please help! Nuxt server/functions - Vercel

6 messages · Page 1 of 1 (latest)

modest musk
#

Please help! Nuxt server/functions - vercel. I upgraded to a pro account and added vercel.json at root level to increment the timeout from default 15sec. But my builds are still not reading it. It is being correctly updated via CI from github. Any thoughts?

#

still saying 15sec

potent geode
#

in chat.js maybe:

export const runtime = 'nodejs'
export const maxDuration = 300
#

or

export const config = {
  maxDuration: 300,
};