funquail/front/src/config.js
2018-02-18 14:42:17 +01:00

8 lines
164 B
JavaScript

class Config {
constructor () {
this.BACKEND_URL = process.env.BACKEND_URL
this.API_URL = this.BACKEND_URL + 'api/v1/'
}
}
export default new Config()