Source: utils/getDataApi.js

import axios from "axios";

/**
 * Define the base of the request url to the api using axios
 * @mixin
 */
export const api = axios.create({
    baseURL: `http://localhost:3000/`
});