Manoj-Athi/Stack-overflow

problem with api server

Opened this issue · 2 comments

const API = axios.create({
baseURL: "https://stack-overflow-eight.vercel.app/",
});

To what does this need to be changed?

You can change it to your localhost. don't use production url for development
const API = axios.create({ baseURL: 'http://localhost:5000'})

is it fixed?