From 8927fbd4d990dfc4cd3de97d06374658bf58c578 Mon Sep 17 00:00:00 2001 From: Frizzle Date: Wed, 18 Mar 2026 13:28:46 +0100 Subject: [PATCH] Clarify offline README commands --- README.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 53b840b..0031d50 100644 --- a/README.md +++ b/README.md @@ -53,12 +53,20 @@ After a successful install, go to **Apps → Unknown Sources** on your headset a ## For offline usage -The web installer is built with **Vite**. To run it locally: +The web installer lives in `quest-web-installer/` and is built with **Vite**. From the repository root, run: ```bash git clone https://github.com/FrizzleM/QuestLoad.git cd QuestLoad +cd quest-web-installer npm install -npm run dev -npm run build -npm run preview +npm run dev +``` + +To create a production build locally: + +```bash +cd quest-web-installer +npm run build +npm run preview +```