Next.js Discord

Discord Forum

nextjs 14.1 server action body size limit

Unanswered
Brown bear posted this in #help-forum
Open in Discord
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
  experimental: {
    serverActions: {
      bodySizeLimit: '64mb'
    }
  }

1 Reply