UNPKG

@replyke/core

Version:

Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.

10 lines 294 B
import axios from "axios"; export const BASE_URL = "https://api.replyke.com/v7"; export default axios.create({ baseURL: BASE_URL, }); export const axiosPrivate = axios.create({ baseURL: BASE_URL, headers: { "Content-Type": "application/json" }, }); //# sourceMappingURL=axios.js.map