From e71594000a7ff41d9c3e73300f9c1e45c8891301 Mon Sep 17 00:00:00 2001 From: "Robin E.R. Davies" Date: Thu, 18 Jun 2026 08:18:48 -0400 Subject: [PATCH] Referesh vite dependencies in Prod build. --- build-prod.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-prod.sh b/build-prod.sh index e6352b9..ca98a49 100755 --- a/build-prod.sh +++ b/build-prod.sh @@ -3,8 +3,14 @@ set -e +# Make sure vite dependencies are up to date. +cd vite +npm install +cd .. + # clean build + if [ "$1" != "--continue" ]; then rm -rf build fi