[Solved] Axios Error: Request body larger than maxBodyLength limit

Problem:
Axios error: request body larger than maxbodylength limit

Solution:

const apiRequester = axios.create({
baseURL: apiURL,
maxBodyLength: Infinity //set the size
});

Read More: