Don't clear screen on vite startup as that hides our own startup banner.

This commit is contained in:
2026-08-31 19:53:22 +00:00
parent e4c21109d9
commit be8dc0c513
+2
View File
@@ -5,6 +5,7 @@
* Configures Vite for FastAPI backend integration: * Configures Vite for FastAPI backend integration:
* - Proxies /api/* requests to the FastAPI backend * - Proxies /api/* requests to the FastAPI backend
* - Builds to the Python module's frontend-build directory * - Builds to the Python module's frontend-build directory
* - Disables Vite's screen clearing on startup
* *
* Options: * Options:
* paths - Array of paths to proxy (default: ["/api"]) * paths - Array of paths to proxy (default: ["/api"])
@@ -26,6 +27,7 @@ export default function fastapiVue({ paths = ["/api"] } = {}) {
return { return {
name: "vite-plugin-fastapi-MODULE_NAME", name: "vite-plugin-fastapi-MODULE_NAME",
config: () => ({ config: () => ({
clearScreen: false,
server: { proxy }, server: { proxy },
build: { build: {
outDir: "../MODULE_NAME/frontend-build", outDir: "../MODULE_NAME/frontend-build",