diff --git a/src/config/configActions.js b/src/config/configActions.js index 455e9d2..08f092c 100644 --- a/src/config/configActions.js +++ b/src/config/configActions.js @@ -10,7 +10,7 @@ export function setConfig(config) { export function getConfig() { return dispatch => { - return axios.get("/config.json").then(response => { + return axios.get("config.json").then(response => { const config = response.data; dispatch(setConfig(config)); return response;