comparison client/src/lib/http.js @ 1272:bc55ffaeb639

cleaned up client/src directory better organization of files and directories, better naming, separation of admin and map context
author Markus Kottlaender <markus@intevation.de>
date Thu, 22 Nov 2018 07:07:12 +0100
parents
children ea3a89a1813a
comparison
equal deleted inserted replaced
1268:aca692e73028 1272:bc55ffaeb639
1 /*
2 * This is Free Software under GNU Affero General Public License v >= 3.0
3 * without warranty, see README.md and license for details.
4 *
5 * SPDX-License-Identifier: AGPL-3.0-or-later
6 * License-Filename: LICENSES/AGPL-3.0.txt
7 *
8 * Copyright (C) 2018 by via donau
9 * – Österreichische Wasserstraßen-Gesellschaft mbH
10 * Software engineering by Intevation GmbH
11 *
12 * Author(s):
13 * Thomas Junk <thomas.junk@intevation.de>
14 */
15
16 import axios from "axios";
17
18 export const HTTP = axios.create({
19 baseURL: process.env.VUE_APP_API_URL || "/api"
20 /* headers: {
21 Authorization: 'Bearer {token}'
22 }*/
23 });