[Vuejs]-I'm having trouble with axios get and post requests in real host

0👍

configure your axios in main.js (entry point )

axios.create({
    baseURL: process.env.VUE_APP_BASE_URL
})

Then directly call api ..it will append base url based on your env parameter

 axios('/online-store/src/database_api/Admin/recent_product.php')

Note : Don’t forget to add .env as per environment

Leave a comment