We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d067c18 commit 9bd37f3Copy full SHA for 9bd37f3
1 file changed
frontend/higher-pleasures-dashboard/src/services/api/client.ts
@@ -2,6 +2,8 @@ import axios from "axios";
2
import logger from "../../utils/logger";
3
4
const apiLogger = logger.component("API");
5
+const env_var = import.meta.env.VITE_BASE_API_URL;
6
+console.log("env_var", env_var);
7
const BASE_API_URL =
8
import.meta.env.VITE_BASE_API_URL || "http://localhost:8000";
9
const apiClient = axios.create({
0 commit comments