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: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Plane Documentation
2
2
3
-
This website is built using [Docusaurus v3](https://docusaurus.io/) and hosted at [docs.plane.so](https://docs.plane.so/). If you are looking for the developer documentation, see [Plane developer documentation](https://github.com/makeplane/developer-docs).
3
+
This website is built using [VitePress v1.6.3](https://vitepress.dev/) and hosted at [docs.plane.so](https://docs.plane.so/). If you are looking for the developer documentation, see [Plane developer documentation](https://github.com/makeplane/developer-docs).
4
4
5
5
## Overview
6
6
@@ -25,24 +25,24 @@ The Plane documentation provides detailed information on the following topics:
25
25
26
26
3. Install dependencies.
27
27
```bash
28
-
yarn
28
+
pnpm install
29
29
```
30
30
31
31
## Local development
32
32
33
33
```bash
34
-
yarn start
34
+
pnpm dev
35
35
```
36
36
37
37
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
38
38
39
39
## Build
40
40
41
41
```bash
42
-
yarn build
42
+
pnpm build
43
43
```
44
44
45
-
This command generates static files into the `build` directory.
45
+
This command generates static files into the `docs/.vitepress/dist` directory.
0 commit comments