11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
import axios from "axios"
|
|
|
|
const api = axios.create({
|
|
baseURL: import.meta.env.VITE_EOLAS_API_ENDPOINT,
|
|
timeout: 10000,
|
|
headers: {
|
|
"x-api-key": import.meta.env.VITE_EOLAS_API_KEY,
|
|
},
|
|
})
|
|
|
|
export default api
|