nextjs 14.1 server action body size limit
Unanswered
Brown bear posted this in #help-forum
Brown bearOP
hi
i'm use nextjs 14.1 version with app router.
i try to use server action for upload image
but request body size larger then 1MB, vercel throw 413 error
so i read this document and update my config
(https://nextjs.org/docs/app/api-reference/next-config-js/serverActions#bodysizelimit)
but it doesn't work
how can i solve this problem?
---
i change my server action body size limit to 64mb
next.config.js setup
i'm use nextjs 14.1 version with app router.
i try to use server action for upload image
but request body size larger then 1MB, vercel throw 413 error
so i read this document and update my config
(https://nextjs.org/docs/app/api-reference/next-config-js/serverActions#bodysizelimit)
but it doesn't work
how can i solve this problem?
---
i change my server action body size limit to 64mb
next.config.js setup
experimental: {
serverActions: {
bodySizeLimit: '64mb'
}
}1 Reply
@Brown bear hi
i'm use nextjs 14.1 version with app router.
i try to use server action for upload image
but request body size larger then 1MB, vercel throw 413 error
so i read this document and update my config
(https://nextjs.org/docs/app/api-reference/next-config-js/serverActions#bodysizelimit)
but it doesn't work
how can i solve this problem?
---
i change my server action body size limit to 64mb
next.config.js setup
json
experimental: {
serverActions: {
bodySizeLimit: '64mb'
}
}
the max body size on vercel is 4.5mb
read here if you need more than that
https://vercel.com/guides/how-to-bypass-vercel-body-size-limit-serverless-functions
read here if you need more than that
https://vercel.com/guides/how-to-bypass-vercel-body-size-limit-serverless-functions