17 lines
446 B
Python
17 lines
446 B
Python
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"]
|
|
)
|