blob: 009d95ef97f53bfa6d6a26847eb50f3b778561f4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import axios from 'axios'
export const popularProductApi = () => {
return async () => {
const dataPopularProducts = await axios(
`${process.env.NEXT_PUBLIC_SELF_HOST}/api/shop/search?q=*&page=1&orderBy=popular-weekly&priceFrom=1`
)
return dataPopularProducts.data.response
}
}
|