We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf6de36 commit 47a61e6Copy full SHA for 47a61e6
2 files changed
reflex/app.py
@@ -1315,6 +1315,7 @@ def memoized_toast_provider():
1315
resulting_path = (
1316
Path.cwd() / prerequisites.get_web_dir() / static_file_path
1317
)
1318
+ resulting_path.parent.mkdir(parents=True, exist_ok=True)
1319
if isinstance(content, str):
1320
resulting_path.write_text(content)
1321
else:
reflex/plugins/__init__.py
@@ -1 +1,5 @@
1
"""Reflex Plugin System."""
2
+
3
+from .base import CommonContext as CommonContext
4
+from .base import Plugin as Plugin
5
+from .base import PreCompileContext as PreCompileContext
0 commit comments