The devserver now takes --listen for vite endpoint rather than a positional argument. Changed FRONTEND_URL to VITE_URL and streamlined terminology elsewhere.

This commit is contained in:
2026-02-10 16:09:07 +00:00
parent d2ee7395c5
commit d3b6fccce0
2 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import os
from fastapi_vue import server
DEFAULT_PORT = TEMPLATE_DEFAULT_PORT
DEVMODE = bool(os.getenv("ENVPREFIX_FRONTEND_URL"))
DEVMODE = bool(os.getenv("ENVPREFIX_DEV") == "1")
def main():