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