mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-23 10:10:20 -06:00
Merge pull request #905 from bluewave-labs/feat/fe/fallback-api-url
Add a fallback URL
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import axios from "axios";
|
||||
const BASE_URL = import.meta.env.VITE_APP_API_BASE_URL;
|
||||
const FALLBACK_BASE_URL = "http://localhost:5000/api/v1";
|
||||
import { logger } from "./Logger";
|
||||
class NetworkService {
|
||||
constructor(store) {
|
||||
@@ -11,6 +12,8 @@ class NetworkService {
|
||||
const state = store.getState();
|
||||
if (BASE_URL === undefined && state.settings.apiBaseUrl) {
|
||||
baseURL = state.settings.apiBaseUrl;
|
||||
} else {
|
||||
baseURL = FALLBACK_BASE_URL;
|
||||
}
|
||||
this.setBaseUrl(baseURL);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user