소스 검색

[frontend] Configure withCredentials for the global Axios instance

Johan Åhlén 4 년 전
부모
커밋
4221264655
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      desktop/core/src/desktop/js/api/utils.ts

+ 1 - 1
desktop/core/src/desktop/js/api/utils.ts

@@ -54,7 +54,7 @@ export interface ApiFetchOptions<T, E = string> extends AxiosRequestConfig {
   ) => void;
 }
 
-const axiosInstance = axios.create();
+const axiosInstance = axios.create({ withCredentials: true });
 
 let baseUrl = (window as hueWindow).HUE_BASE_URL;
 let bearerToken: string | undefined;