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