From 60a5a1917f025338f4d435f09245ddaa5c13469e Mon Sep 17 00:00:00 2001 From: Abi Raja Date: Mon, 27 Nov 2023 18:24:28 -0500 Subject: [PATCH] add yarn command to build hosted version --- frontend/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/package.json b/frontend/package.json index 11d8ec8..0fcc84f 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -7,6 +7,7 @@ "dev": "vite", "dev-hosted": "vite --mode prod", "build": "tsc && vite build", + "build-hosted": "tsc && vite build --mode prod", "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "preview": "vite preview" },