-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrxconfig.py
More file actions
29 lines (23 loc) · 926 Bytes
/
rxconfig.py
File metadata and controls
29 lines (23 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from __future__ import annotations
import os
from pathlib import Path
from dotenv import load_dotenv
load_dotenv(Path(__file__).resolve().parent / ".env")
os.environ.setdefault("REFLEX_SSR", "true")
import reflex as rx
from reflex.plugins.sitemap import SitemapPlugin
config = rx.Config(
app_name="materialized_enhancements",
disable_plugins=[SitemapPlugin],
stylesheets=[
"https://cdn.jsdelivr.net/npm/fomantic-ui@2.9.4/dist/semantic.min.css",
],
head_components=[
rx.script(src="https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js"),
rx.script(src="https://cdn.jsdelivr.net/npm/fomantic-ui@2.9.4/dist/semantic.min.js"),
rx.el.meta(name="google-site-verification", content="BoBYqc8A_Xkw0AHGsMrk9Y_Ms3zsltZZtvd8Rltrs4w"),
],
tailwind=None,
vite_allowed_hosts=["materialized-enhancements.longevity-genie.info"],
show_built_with_reflex=False,
)