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
Copy file name to clipboardExpand all lines: AGENTS.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -209,4 +209,6 @@ The repository does **not** contain a `.cursor/` directory or a `.github/copilot
209
209
210
210
---
211
211
212
+
**Agent Restrictions**: Agents must not modify any files outside the project directory. They also may not commit changes without explicit user permission; always ask for review before committing.
213
+
212
214
_End of file – agents should keep this document up to date as the project evolves._
Copy file name to clipboardExpand all lines: README.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,23 @@ Currently, two official plugins are available:
7
7
-[@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
8
8
-[@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
9
9
10
+
## Setup
11
+
12
+
This project requires **Node ≥ 22.12.0**. If you use `nvm`, run:
13
+
14
+
```bash
15
+
nvm install 22.12.0
16
+
nvm use 22.12.0
17
+
```
18
+
19
+
You can also use the provided npm script:
20
+
21
+
```bash
22
+
npm run setup
23
+
```
24
+
25
+
which will execute the above commands (assuming `nvm` is available in your shell).
26
+
10
27
## Expanding the ESLint configuration
11
28
12
29
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
0 commit comments