[Vuejs]-What can cause Chrome to give an net::ERR_FAILEDwhen dooing a request from a vue frontend to C# Api using axios?

0👍

Have you tried to specify Content-Type header?

const config:AxiosRequestConfig = {
  method: 'get',
  url: 'https://localhost:44333/api/Timezone/',
  headers: {
        "Content-type": "application/json"
    }
};

Leave a comment