view client/src/lib/http.js @ 555:f66116b3a249

fix: Reset collapse state of sidebar
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 03 Sep 2018 12:57:33 +0200
parents 88d0d60924cf
children
line wrap: on
line source

import axios from "axios";

export const HTTP = axios.create({
  baseURL: process.env.VUE_APP_API_URL || "/api"
  /* headers: {
    Authorization: 'Bearer {token}'
  }*/
});