mirror of
https://github.com/20kaushik02/spotify-manager-web.git
synced 2025-12-06 08:04:06 +00:00
12 lines
243 B
JavaScript
12 lines
243 B
JavaScript
import axios from "axios";
|
|
import { backendDomain } from "./paths";
|
|
|
|
export const axiosInstance = axios.create({
|
|
baseURL: backendDomain,
|
|
withCredentials: true,
|
|
timeout: 20000,
|
|
headers: {
|
|
"Content-Type": "application/json"
|
|
},
|
|
});
|