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
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,21 @@ There are three projects which can be run individually.
yarn workspace @app/web dev
```

## Troubleshooting

Common issues and their solutions:

| Issue | Solution |
|-------|----------|
| `yarn` command not found | Enable Corepack: `corepack enable` |
| Node version mismatch | Run `nvm use` to load the correct Node.js version |
| Build fails with memory error | Increase Node memory: `export NODE_OPTIONS="--max_old_space_size=4096"` |
| Port already in use | Kill the process: `lsof -i :3000` then `kill -9 <PID>`, or use a different port |
| Dependencies not resolving | Clear cache: `yarn cache clean` and reinstall: `yarn install --force` |
| TypeScript errors after pull | Run `yarn build` to regenerate type definitions |

For additional help, join the [Base Discord](https://base.org/discord) and ask in #developer-chat.

## Contributing

We welcome contributions to Base! For guidelines on how to contribute please refer to [CONTRIBUTING.md](CONTRIBUTING.md).
Expand Down