blob: 4bb5e580f80b2ee6b41b63b7966bc55b22fea55f (
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-weekly`
)
return dataPopularProducts.data.response
}
export default popularProductApi
|