Change default port to 8989 like Droppy. Using 8999 for backend in dev mode.

This commit is contained in:
Leo Vasanko
2026-02-01 06:09:56 +00:00
parent 1e207b38b7
commit 5c530652fa
5 changed files with 20 additions and 16 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ import httpx
from buildutil import find_dev_tool, find_install_tool, logger
from fastapi_vue.hostutil import parse_endpoint
DEFAULT_VITE_PORT = 5173
DEFAULT_BACKEND_PORT = 5180
DEFAULT_VITE_PORT = 8989
DEFAULT_BACKEND_PORT = 8999
class ProcessGroup: