test
This commit is contained in:
16
rxconfig.py
Normal file
16
rxconfig.py
Normal 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"]
|
||||
)
|
||||
Reference in New Issue
Block a user