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