1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-14 00:59:06 +00:00
bramw_baserow/web-frontend/services/client.js
2019-06-21 20:22:57 +02:00

10 lines
213 B
JavaScript

import axios from 'axios'
export const client = axios.create({
baseURL: process.env.baseUrl,
withCredentials: false,
headers: {
Accept: 'application/json',
'Content-Type': 'application/json'
}
})