feat: add API client

This commit is contained in:
Your Name
2026-04-10 15:41:15 +05:30
parent efdd6799d9
commit a8b347c1db
+10
View File
@@ -0,0 +1,10 @@
import axios from "axios";
const apiClient = axios.create({
baseURL: import.meta.env.VITE_API_URL + '/api/auth/',
headers: {
"Content-Type": "application/json",
},
});
export default apiClient;