hedera-web/src/boot/axios.js

8 lines
208 B
JavaScript

import axios from 'axios'
export default async ({ Vue }) => {
Vue.prototype.$apiBase = `//${location.hostname}:3000/api/`
Vue.prototype.$axios = axios
axios.defaults.baseURL = Vue.prototype.$apiBase
}