An error occurred while loading the file. Please try again.
-
Chloé JACOB authored282c1288
instalikeApi.ts 396 B
import axios from "axios";
import { createInstalikeApi } from "@jmetterrothan/instalike";
//import type { RootState } from "./redux/store";
const instalikeApi = createInstalikeApi(
axios.create({
baseURL: import.meta.env.VITE_API_ENDPOINT,
headers: {
"Content-Type": "application/json;charset=utf-8",
Accept: "application/json",
},
})
);
export default instalikeApi;