mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 16:33:11 +08:00
11 lines
209 B
TypeScript
11 lines
209 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;
|