fetchConfig()

in src/lib/service/custos-portal-services/index.js [10:15]


    fetchConfig() {
        return axios.get("/api/config")
            .then((res) => {
                return res ? res.data : null;
            });
    }