By default all http requests made by axios are sent to
https://preview.keenthemes.com/metronic8/laravel/api
url, you can update the default url in file .env variable
VITE_APP_API_URL. This variable is used to set the baseURL
for axios instance in src/core/services/ApiService.ts.
By default laravel app is served on url
http://127.0.0.1:8000, to
use the local api you need to update
VUE_APP_API_URL variable in file .env to
http://127.0.0.1:8000/api.