@replyke/core
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
13 lines • 410 B
JavaScript
import axios from "axios";
var PRODUCTION_URL = "https://api.replyke.com/api/v1";
// const DEVELOPMENT_URL = "http://localhost:5000/api/v1";
var BASE_URL = PRODUCTION_URL;
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