Ignore:
Timestamp:
01/16/24 16:34:03 (9 months ago)
Author:
darsov2 <62809499+darsov2@…>
Branches:
master
Children:
07f4e8b
Parents:
e6c2521
Message:

revert

File:
1 edited

Legend:

Unmodified
Added
Removed
  • frontend/src/axios.js

    re6c2521 r5528b99  
    11import axios from "axios";
    2 
    32
    43const instance = axios.create({
    54    baseURL: "http://localhost:8080/",
    65    withCredentials: true,
    7     maxRedirects: 1,
    8     beforeRedirect: (options, { headers }) => {
    9         console.log(options)
    10         if (options.hostname === "example.com") {
    11             options.auth = "user:password";
    12         }}
    13 
     6    maxRedirects: 1
    147})
    158
     9instance.interceptors.response.use(function (response) {
     10    // Any status code that lie within the range of 2xx cause this function to trigger
     11    // Do something with response data
     12    return response;
     13  }, function (error) {
     14    console.log(error)
     15    //  window.location.href="/login"
     16    // Any status codes that falls outside the range of 2xx cause this function to trigger
     17    // Do something with response error
     18    return Promise.reject(error);
     19  });
     20
    1621export default instance
Note: See TracChangeset for help on using the changeset viewer.