10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
import axios from "axios";
|
|
|
|
export const serverApi = axios.create({
|
|
baseURL: process.env.NEXT_PUBLIC_DISPATCH_SERVER_URL,
|
|
timeout: 10000,
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
});
|