デフォルトの最大サイズは1MB
ServerActionsのリクエストの最大サイズはデフォルトでは1MBとなっています。
1MBを超過すると以下のようなエラーとなります。
⨯ uncaughtException: [Error: Body exceeded 1 MB limit.
To configure the body size limit for Server Actions, see: https://nextjs.org/docs/app/api-reference/next-config-js/serverActions#bodysizelimit] {
statusCode: 413
}
最大サイズを設定する
任意のサイズに変更するにはnext.config.js
に次の設定を追記します。
/** @type {import('next').NextConfig} */
module.exports = {
experimental: {
serverActions: {
bodySizeLimit: '3mb',
},
},
}
参考