Skip to content

fix: add missing build step to setup instructions #44

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
14 changes: 12 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,17 @@ Go to your fork on GitHub and click "Compare & pull request".
```
You can get your Public API key from the [JigsawStack Dashboard](https://jigsawstack.com).

3. **Start the development server:**
3. **Build the project:**
```bash
npm run build
```
or
```bash
yarn build
```
This creates the `dist/` directory with the compiled library files that the demo HTML requires.

4. **Start the development server:**
```bash
npm run dev
```
Expand All @@ -77,7 +87,7 @@ Go to your fork on GitHub and click "Compare & pull request".
yarn dev
```

3. **Open your browser and visit:**
5. **Open your browser and visit:**
```
http://localhost:5173
```
Expand Down