Spaces:
Running
Running
| import axios from 'axios'; | |
| const api = axios.create({ | |
| baseURL: import.meta.env.VITE_API_URL || '', // Empty means use proxy defined in vite.config.ts | |
| timeout: 30000, | |
| headers: { | |
| 'Content-Type': 'application/json', | |
| }, | |
| }); | |
| export default api; | |