mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-13 21:01:16 +08:00
7 lines
148 B
JavaScript
7 lines
148 B
JavaScript
import axios from 'axios';
|
|
import { APP_BASE_URL } from 'widget/helpers/constants';
|
|
|
|
export const API = axios.create({
|
|
baseURL: APP_BASE_URL,
|
|
});
|