Merge pull request #905 from bluewave-labs/feat/fe/fallback-api-url

Add a fallback URL
This commit is contained in:
Alexander Holliday
2024-10-02 00:10:15 -07:00
committed by GitHub

View File

@@ -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);
});