mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 08:53:00 +08:00
11 lines
No EOL
197 B
TypeScript
11 lines
No EOL
197 B
TypeScript
import axios from 'axios';
|
|
|
|
import { REST_BASE_URL } from '../conf'
|
|
|
|
const axiosRaw= axios.create({
|
|
baseURL: REST_BASE_URL + "/api/v1/",
|
|
timeout: 1000,
|
|
headers: {}
|
|
})
|
|
|
|
export default axiosRaw |