I previously deployed a Langgraph application that was functioning correctly. Initially, the Langgraph backend API was hosted locally on my computer using a Docker container, and the app worked as long as the container was running.
Recently, I migrated the backend API to Langgraph Cloud and removed the previous frontend deployment on Vercel before redeploying it. I updated the environment variable NEXT_PUBLIC_API_URL to point to the new cloud API server. However, the application is no longer working as expected—it appears to be attempting to connect to the local API server (http://localhost:8123) instead of the cloud server. Notably, when I run the Docker container locally, the application functions properly, and I have confirmed that the code does not have the local URL hard-coded.
Could you please help me resolve this issue and ensure that the app connects to the Langgraph Cloud API server?
Thank you for your assistance.
