Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 | import { AUTH_SERVER_HOST } from '@lib/config';
import { AuthApi, Configuration } from '@uniquegood/realworld-auth-interface';
import axios from 'axios';
const configuration = new Configuration({ basePath: `https://${AUTH_SERVER_HOST}` });
export const axiosInstance = axios.create({
withCredentials: true
});
export const authApi = new AuthApi(configuration, undefined, axiosInstance);
|