how to reduce the size response in axios code example
Example 1: axios instance
const getUser = axios.create({
baseURL: 'https://randomuser.me/api/',
timeout: 1000,
headers: {'X-Custom-Header': 'foobar'}
});
getUser().then(response => console.log(response))
Example 2: javascript axios request with params for client side rendering
let params = {
page: currentPage + 1,
per_page: rowsPerPage
}
axios
.get('/products', { params: params })
.then((response) => {
if (isMountedRef.current) {
setProducts(response.data.data);
setMeta(response.data.meta);
}
});