File size: 254 Bytes
8052574
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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;