Prefect - Local Deployment without Docker

Environment:

I set up the following environment variables:

 prefect config set PREFECT_SERVER_API_HOST=192.168.1.103
 prefect config set PREFECT_API_URL="http://192.168.1.103:4200/api"

Then running prefect server start works. I can access http://192.168.1.103:4200/docs
I can execute api health.

But the main UI is just a white page, and nothing else. I suspect this is related to Orion UI makes requests only to 127.0.0.1:4200 and ignores PREFECT_API_URL · Issue #5648 · PrefectHQ/prefect · GitHub

in my situation, i run:

prefect config set PREFECT_SERVER_API_HOST=192.168.x.x
prefect config set PREFECT_API_URL=“http://192.168.x.x:4200/api

the window is also white page, but when i
open a new chrome incognito window. and it works.
that might be the chrome problem, i don’t know.