12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
|
|
import axios from 'axios'
|
||
|
|
|
||
|
|
const apiClient = axios.create({
|
||
|
|
baseURL: 'http://localhost:9000/api/v2',
|
||
|
|
timeout: 5000,
|
||
|
|
headers: {
|
||
|
|
'Content-Type': 'application/json',
|
||
|
|
}
|
||
|
|
})
|
||
|
|
|
||
|
|
export default apiClient
|