hrequest.js 241 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import axios from "axios"; const hservice = axios.create({ baseURL: process.env.VUE_APP_API_UNI_URL, // withCredentials: true, // send cookies when cross-domain requests timeout: 5000, // request timeout }); export default hservice;