I try to get data from API Google Places
axios.get('https://maps.googleapis.com/maps/api/place/details/json?placeid=...&key=mykey')
.then(response => {
commit('SET_REVIEWS', { list: response.data })
}, error => {
console.log(error)
})
And after that i have this error
I know the error with CORS on server side, but what should i do?