Axios error

Request Body Larger Than MaxBodyLength Limit

solution

config axios maxContentLength/maxBodyLength to a large number or Infinity

    const options = {
      url,
      //method: 'post',
      //...
      maxContentLength: Infinity,
      maxBodyLength: Infinity,
    };