Skip to content

Commit 40c6910

Browse files
committed
.13?
1 parent f540295 commit 40c6910

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

reflex/constants/installer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,11 +143,11 @@ def DEPENDENCIES(cls) -> dict[str, str]:
143143
"postcss-import": "16.1.1",
144144
"@react-router/dev": _react_router_version,
145145
"@react-router/fs-routes": _react_router_version,
146-
"vite": "npm:[email protected].15",
146+
"vite": "npm:[email protected].13",
147147
}
148148
OVERRIDES = {
149149
# This should always match the `react` version in DEPENDENCIES for recharts compatibility.
150150
"react-is": _react_version,
151151
"cookie": "1.0.2",
152-
"vite": "npm:[email protected].15",
152+
"vite": "npm:[email protected].13",
153153
}

reflex/utils/build.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,11 @@ def _duplicate_index_html_to_parent_directory(directory: Path):
187187

188188

189189
def build():
190-
"""Build the app for deployment."""
190+
"""Build the app for deployment.
191+
192+
Raises:
193+
SystemExit: If the build process fails.
194+
"""
191195
wdir = prerequisites.get_web_dir()
192196

193197
# Clean the static directory if it exists.

0 commit comments

Comments
 (0)