Python/产品需求文档AI生成/rxconfig.py

16 lines
395 B
Python

import reflex
from reflex.plugins import RadixThemesPlugin
from reflex_base.plugins.sitemap import SitemapPlugin
config = reflex.Config(
app_name="application",
disable_plugins=[SitemapPlugin],
plugins=[
RadixThemesPlugin(
theme=reflex.theme(
appearance="dark", accent_color="purple" # 暗黑模式 # 主题色
)
)
],
)