13 lines
401 B
TypeScript
13 lines
401 B
TypeScript
import { createApi, } from "@repo/api";
|
|
import { useAuthStore } from "./stores/auth-store";
|
|
import { getAuthCookies } from "@/modules/auth/auth.actions";
|
|
|
|
export const getAuthApi = async () => {
|
|
const { token } = await getAuthCookies();
|
|
console.log(`Auth Token: ${token}`);
|
|
const api = createApi({ headers: token ? { Authorization: `Bearer ${token}` } : undefined });
|
|
return api;
|
|
}
|
|
|
|
|