view client/src/application/lib/http.js @ 860:38b682eaa7b1

client: add updateing of bottleneck filter * Add a watcher on the selectedMorph to trigger the update of the bottleneck filter. * Reverse the parameter to updateBottleneckFilter() to the order that was mostly used.
author Bernhard Reiter <bernhard@intevation.de>
date Fri, 28 Sep 2018 17:19:08 +0200
parents ef307bd6b5d8
children ca628dce90dd
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}'
  }*/
});