Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

CustomAxios.js 156 B

2 år sedan
12345678910
  1. import axios from "axios"
  2. const instance = axios.create(
  3. {
  4. withCredentials: true,
  5. crossDomain: true
  6. }
  7. )
  8. export {instance as axios}