1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-10 07:37:30 +00:00
bramw_baserow/web-frontend/services/client.js
2019-08-26 17:49:28 +00: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'
}
})