소스 검색

change api url definition, using localhost and changing port
needs CORS everywhere in firefox to work

Bachir Soussi Chiadmi 5 년 전
부모
커밋
30df02ba39
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 2
      src/api/rest-axios.js

+ 4 - 2
src/api/rest-axios.js

@@ -1,7 +1,9 @@
 import axios from 'axios'
 
-// let path = 'http://' + window.location.hostname + ':8984'
-let path = 'http://dev.api.gdp.fr'
+// TODO: make this one as settings (or find an other solution)
+let path = 'http://' + window.location.hostname + ':8984'
+// let path = 'http://dev.api.gdp.fr'
+// let path = 'http://localhost:8984'
 
 export const REST = axios.create({
   baseURL: path + '/gdp',