mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 12:57:28 +00:00
13 lines
No EOL
400 B
JavaScript
13 lines
No EOL
400 B
JavaScript
import axiosHttp from 'axios'
|
|
|
|
export const axios = axiosHttp
|
|
|
|
axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'
|
|
axios.defaults.headers.common['Content-Type'] = 'application/json'
|
|
axios.defaults.baseURL = process.env.NODE_ENV === 'development' ? 'http://localhost:5000/' : 'https://api.leaguestats.gg/'
|
|
|
|
export default {
|
|
install (Vue) {
|
|
Vue.prototype.$axios = axiosHttp
|
|
}
|
|
} |