blob: fd7325cfd016c45171d45d1827b8a639ba6d35ea (
plain)
1
2
3
4
5
6
|
import { wrapper } from "axios-cookiejar-support";
import { CookieJar } from "tough-cookie";
import axios from "axios";
const jar = new CookieJar();
export const client = wrapper(axios.create({ jar, withCredentials: true }));
|