rohan13's picture
Flowise Changes
4114d85
raw
history blame contribute delete
530 Bytes
import axios from 'axios'
import { baseURL } from 'store/constant'
const apiClient = axios.create({
baseURL: `${baseURL}/api/v1`,
headers: {
'Content-type': 'application/json'
}
})
apiClient.interceptors.request.use(function (config) {
const username = localStorage.getItem('username')
const password = localStorage.getItem('password')
if (username && password) {
config.auth = {
username,
password
}
}
return config
})
export default apiClient