import axios from 'axios'; const API_URL = import.meta.env.VITE_API_URL || 'http://localhost:8000'; const client = axios.create({ baseURL: `${API_URL}/api/v1`, }); client.interceptors.request.use((config) => { const token = localStorage.getItem('token'); if (token) { config.headers.Authorization = `Bearer ${token}`; } return config; }); export default client;