using app_env to define the api path

This commit is contained in:
2020-07-14 18:11:13 +02:00
parent 14beb796ea
commit 8e63738597
4 changed files with 21 additions and 2 deletions
+11 -1
View File
@@ -1,9 +1,19 @@
import axios from 'axios'
// TODO: make this one as settings (or find an other solution)
let path = 'http://' + window.location.hostname + ':8984'
// https://dev.to/sanfra1407/how-to-use-env-file-in-javascript-applications-with-webpack-18df
// switch (app_env) {
// case 'dev':
// let path = `http://${window.location.hostname}:8984`
// break;
// case 'prod':
// let path = `http://${window.location.hostname}/api`
// break;
// }
// let path = 'http://dev.api.gdp.fr'
// let path = 'http://localhost:8984'
// const
let path = 'http://' + window.location.hostname + (window.env === 'prod' ? '/api' : ':8984')
export const REST = axios.create({
baseURL: path,