rest-axios.js 252 B

123456789101112
  1. import axios from 'axios'
  2. let path = 'http://' + window.location.hostname + ':8984'
  3. export const REST = axios.create({
  4. baseURL: path + '/gdp',
  5. withCredentials: true,
  6. crossDomain: true,
  7. headers: {
  8. 'Content-Type': 'application/json'
  9. }
  10. })