mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
7 lines
165 B
JavaScript
7 lines
165 B
JavaScript
import axios from 'axios';
|
|
|
|
const { apiHost = '' } = window.chatwootConfig || {};
|
|
const wootAPI = axios.create({ baseURL: `${apiHost}/` });
|
|
|
|
export default wootAPI;
|