@replyke/core
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
11 lines • 314 B
JavaScript
import axios from "axios";
var BASE_URL = "https://api.replyke.com/api/v5";
export default axios.create({
baseURL: BASE_URL,
});
export var axiosPrivate = axios.create({
baseURL: BASE_URL,
headers: { "Content-Type": "application/json" },
withCredentials: true,
});
//# sourceMappingURL=axios.js.map