[Vuejs]-Request timeout while uploading movie to app service

0👍

Problems for uploading files to server

  1. Check the timeout in your axios request (front end) – because you have to wait until the all files uploaded to server (https://github.com/axios/axios#creating-an-instance).
  2. Check the domain hosting configuration (if you are hosting your backend service in nginx – check the upload limit (https://www.tecmint.com/limit-file-upload-size-in-nginx/))

Leave a comment