Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Create a new folder before creating a project. #11375

Merged
merged 4 commits into from
Nov 6, 2023
Merged
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
5 changes: 4 additions & 1 deletion docs/docs/docs/guides/boilerplate.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ toc: content
Umi 官方提供了一个脚手架 ,可以轻松快速创建一个项目:

```bash
pnpm dlx create-umi@latest
# 在当前文件夹下创建项目
pnpm create umi
# 在当前目录的 my-umi-app 文件夹下创建项目
pnpm create umi my-umi-app
```

这个命令会安装 `create-umi` 脚手架并自动运行,运行后提供了两个可选项:
Expand Down