This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict' | |
/** copy axios.min.js */ | |
import axios from 'axios' | |
import Tips from './Tips' | |
const host = process.env.NODE_ENV === 'production' ? 'https://xxx.com' : 'http://localhost:3003' | |
axios.defaults.baseURL = `${host}/api` | |
axios.defaults.timeout = 10000 |