You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
215 B
21 lines
215 B
3 months ago
|
## 快速开始
|
||
|
|
||
|
进入前端目录
|
||
|
|
||
|
```sh
|
||
|
cd web
|
||
|
```
|
||
|
|
||
|
安装依赖(建议使用pnpm: https://pnpm.io/zh/installation)
|
||
|
|
||
|
```sh
|
||
|
npm i -g pnpm # 已安装可忽略
|
||
|
pnpm i # 或者 npm i
|
||
|
```
|
||
|
|
||
|
启动
|
||
|
|
||
|
```sh
|
||
|
pnpm dev
|
||
|
```
|