Next.js Discord

Discord Forum

Server Action size limit doesnt work

Unanswered
Gharial posted this in #help-forum
Open in Discord
GharialOP
Hi i have such configuration
const config = {
  reactStrictMode: false,
  output: process.env.BUILD_STANDALONE === "true" ? "standalone" : undefined,
  experimental: {
    reactCompiler: true,
    serverActions: {
      bodySizeLimit: "100kb",
    },
  },

I'm receving:
 ⨯ uncaughtException:  Error: Body exceeded 100kb limit.
                To configure the body size limit for Server Actions, see: https://nextjs.org/docs/app/api-reference/next-config-js/serverActions#bodysizelimit
    at createAsyncIterator.next (<anonymous>) {
  statusCode: 413
}

but still action passes and works correctly.

next: ^15.0.3,

Is that normal?

0 Replies