Problem:
Axios error: request body larger than maxbodylength limit
Solution:
const apiRequester = axios.create({
baseURL: apiURL,
maxBodyLength: Infinity //set the size
});
Problem:
Axios error: request body larger than maxbodylength limit
Solution:
const apiRequester = axios.create({
baseURL: apiURL,
maxBodyLength: Infinity //set the size
});