This commit is contained in:
jackiettran
2025-07-25 23:28:55 -04:00
parent e65c53e6aa
commit 6cba15d36a
6 changed files with 70 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
import axios from 'axios';
const API_BASE_URL = 'http://localhost:5001/api';
const API_BASE_URL = process.env.REACT_APP_API_URL;
const api = axios.create({
baseURL: API_BASE_URL,