blob: 71fb72e6986a2c8a59cab7af4e387cf873b6f13e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import _ from 'lodash-contrib'
import axios from 'axios'
const productSearchApi = async ({ query }) => {
const dataProductSearch = await axios(
`${process.env.NEXT_PUBLIC_SELF_HOST}/api/shop/search?${query}&operation=OR`
)
return dataProductSearch.data
}
export default productSearchApi
|