mirror of
https://github.com/ershisan99/cards-front.git
synced 2025-12-16 20:49:28 +00:00
7 lines
154 B
TypeScript
7 lines
154 B
TypeScript
import axios from "axios"
|
|
|
|
export const AuthInstance = axios.create({
|
|
baseURL: import.meta.env.VITE_BASE_API_URL + "auth/",
|
|
withCredentials: true,
|
|
})
|