Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 8927fbd4d9
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| To create a production build locally: | ||
|
|
||
| ```bash | ||
| cd quest-web-installer |
There was a problem hiding this comment.
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 👍 / 👎.
Motivation
Description
README.mdto point the offline workflow at thequest-web-installer/folder, add an explicitcd quest-web-installerstep, separate development (npm run dev) and production (npm run build/npm run preview) command blocks, and close the previously unterminated fenced code block.Testing
quest-web-installer/package.jsonwithcat quest-web-installer/package.jsonto confirm thedev,build, andpreviewscripts exist and are correct.nl -ba README.md | sed -n '54,72p'andnl -ba README.md | tail -n 30to confirm the updated commands and formatting.Codex Task