8 lines
182 B
JavaScript
8 lines
182 B
JavaScript
const axiosConfig = {
|
|
// Empty by default. Add properties
|
|
};
|
|
const fetchCallbacks = {
|
|
onStart: (url) => console.log("Fetching:", url)
|
|
};
|
|
|
|
export { axiosConfig, fetchCallbacks };
|