mirror of
https://github.com/ae-utbm/sith.git
synced 2025-03-10 15:27:13 +00:00
10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
|
import Cookies from "js-cookie";
|
||
|
import type { CreateClientConfig } from "#openapi";
|
||
|
|
||
|
export const createClientConfig: CreateClientConfig = (config) => ({
|
||
|
...config,
|
||
|
headers: {
|
||
|
"X-CSRFToken": Cookies.get("csrftoken"),
|
||
|
},
|
||
|
});
|