You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The official documentation website for ContextPilot
2
+
The official documentation website for ContextPilot.
3
+
4
+
## Local Development
5
+
6
+
**Requirements:** Node.js 18+
7
+
8
+
```bash
9
+
# Install dependencies (first time only)
10
+
npm install
11
+
12
+
# Start dev server — opens at http://localhost:3000
13
+
npm start
14
+
15
+
# Or build and preview the static output
16
+
npm run build
17
+
npm run serve
18
+
```
19
+
20
+
> **Note:**`npm start` uses client-side rendering — content requires JavaScript to render in the browser. Use `npm run build && npm run serve` if you need to inspect the pre-rendered HTML.
0 commit comments