Question
What should I change localhost:3000 axios requests to when deployed?
I’m having trouble with figuring out how to access my express api. On my local development machine I had no trouble accessing it with axios requests for example:
axios
.get(`http://localhost:3000/pollPage/fetchMovie/${query}`)
.then((response) => {
however now that my app is deployed these requests do not work anymore they give me 404 errors. what should I change these requests to so that my app is able to function again? If you want to know how my application is setup here is the github link: https://github.com/jak6jak/movie-polling
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×