13 lines
245 B
TypeScript
13 lines
245 B
TypeScript
|
|
import { apiBaseUrl, credential } from "@/util/env";
|
||
|
|
import axios from "axios";
|
||
|
|
|
||
|
|
const client = axios.create({
|
||
|
|
baseURL: apiBaseUrl,
|
||
|
|
headers: {
|
||
|
|
"Content-Type": "application/json",
|
||
|
|
"x-api-key": credential,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
export { client };
|