mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-22 21:01:31 +03:00
13 lines
248 B
JavaScript
13 lines
248 B
JavaScript
import axios from 'axios';
|
|
import Config from 'react-native-config';
|
|
|
|
const api = axios.create({
|
|
baseURL: Config.BACKEND_URL,
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'User-Agent': Config.USER_AGENT,
|
|
},
|
|
});
|
|
|
|
export default api;
|