mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-10 07:37:30 +00:00
10 lines
213 B
JavaScript
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'
|
|
}
|
|
})
|