# @oshun/v6-egbe-web

V6 Pixel Streaming entry.

Vite-built web app. `pnpm dev` starts the dev server; `pnpm build` produces a
static bundle in `dist/`.

## Scripts

| Command          | Definition                                                     |
| ---------------- | -------------------------------------------------------------- |
| `pnpm dev`       | vite --host 0.0.0.0 --port 3061                                |
| `pnpm build`     | tsc -p tsconfig.app.json --pretty false --noEmit && vite build |
| `pnpm test`      | vitest run --config vitest.config.ts                           |
| `pnpm typecheck` | tsc -p tsconfig.app.json --pretty false --noEmit               |

## Layout

- `e2e/`
- `src/`

## Working on this package

The fastest local loop is via Nx:

```bash
pnpm nx test oshun-v6-egbe-web
pnpm nx lint oshun-v6-egbe-web
pnpm nx build oshun-v6-egbe-web
```

When Nx is unhappy (usually because another worktree has duplicate project
names), bypass it with the underlying tools from this directory:

```bash
npx tsc --noEmit
npx vitest run
```

See the [root README](../../../README.md) for monorepo-wide conventions (catalog
deps, commit format, git workflow). See the
[Contributor Guide](../../../docs/CONTRIBUTING.md) for the full PR workflow.
