Stack-overflow
Stack-overflow copied to clipboard
problem with api server
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?