openui
openui copied to clipboard
Fix: the returned data cannot be rendered
If you start with docker and port 7878 is mapped to 17878, rendering will fail
@YangZhiBoGreenHand if you're not running the backend on the default port you'll need to rebuild the container in "hosted" mode. From the frontend directory run:
npm install
npm run build -- --mode hosted
Then rebuild the backend container (docker-compose build
), that should fix the issue you're seeing. Let me know if it doesn't.
Hi,
I had the same issue. Running npm install and build hosted worked for me :)