diff --git a/src/actions/config.js b/src/actions/config.js index 2ef633ad..7ad6910e 100644 --- a/src/actions/config.js +++ b/src/actions/config.js @@ -74,7 +74,7 @@ export function loadConfig() { return (dispatch) => { dispatch(configLoading()); - fetch("config.yml").then((response) => { + fetch("config.yml", { credentials: 'same-origin' }).then((response) => { if (response.status !== 200) { throw new Error(`Failed to load config.yml (${ response.status })`); }