This commit is contained in:
jonnybravo
2026-07-20 10:27:09 +02:00
commit 23ef289075
25 changed files with 1511 additions and 0 deletions

16
rxconfig.py Normal file
View File

@@ -0,0 +1,16 @@
import reflex as rx
from reflex.plugins import SitemapPlugin
config = rx.Config(
app_name="app",
frontend_port=8080,
backend_port=8081,
# Wichtig: Hier jetzt http:// statt https://
api_url="http://man-dan-05:8081",
# Sitemap-Warnung deaktivieren
disable_plugins=[SitemapPlugin],
# Vite anweisen, den Hostnamen im Netzwerk zu akzeptieren
vite_allowed_hosts=["man-dan-05", "localhost", "127.0.0.1"]
)