"""Reflex configuration file. This file configures the Reflex application settings. """ import reflex as rx config = rx.Config( app_name="peikarband", api_url="http://localhost:8000", frontend_port=3000, backend_port=8000, db_url="sqlite:///reflex.db", # Temporary, will use PostgreSQL disable_plugins=["reflex.plugins.sitemap.SitemapPlugin"], stylesheets=[ "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap", "https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css", ], )