Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Remove the extra cd quest-web-installer

If someone follows the offline setup instructions top-to-bottom in a single shell, the previous block already leaves them inside quest-web-installer/, so this cd fails with No such file or directory before the production commands run. That makes the new production-build path unusable unless the reader manually backs out to the repo root or starts a fresh shell.

Useful? React with 👍 / 👎.

npm run build
npm run preview
```