mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-30 14:39:29 +02:00
12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
|
import axios from "axios";
|
||
|
|
||
|
export const api = axios.create({
|
||
|
baseURL: `http://${process.env.NEXT_PUBLIC_SITE_DOMAIN || "localhost:3000"}/api/v1`,
|
||
|
timeout: 10000,
|
||
|
headers: {
|
||
|
"Content-Type": "application/json",
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export default api;
|