11 lines
143 B
TypeScript
11 lines
143 B
TypeScript
import { create } from 'apisauce';
|
|
|
|
const http = create({
|
|
baseURL: 'http://192.168.1.16:4000',
|
|
timeout: 10000,
|
|
});
|
|
|
|
export default http;
|
|
|
|
|