2
0

🔧 Increase builder request max size to 4MB

This commit is contained in:
Baptiste Arnaud
2023-11-26 11:12:13 +01:00
parent 6ce43ed26f
commit 4666fd8fa0
2 changed files with 503 additions and 0 deletions

View File

@ -21,4 +21,13 @@ const handler = async (req: NextApiRequest, res: NextApiResponse) => {
},
})(req, res)
}
export const config = {
api: {
bodyParser: {
sizeLimit: '4mb',
},
},
}
export default handler