mirror of
https://github.com/Noratrieb/mx-3.git
synced 2026-01-14 23:35:05 +01:00
11 lines
273 B
TypeScript
11 lines
273 B
TypeScript
import axios from "axios";
|
|
|
|
const axiosInstance = axios.create({
|
|
baseURL: "https://api.srgssr.ch/mx3/v2",
|
|
headers: {
|
|
"content-type": "application/json",
|
|
Authorization: "Bearer HPM3tl4opFR2KPBU3BQSReRn3Egd",
|
|
},
|
|
});
|
|
|
|
export default axiosInstance;
|