完善:zhub快速上手页面

This commit is contained in:
2023-11-28 20:24:54 +08:00
parent 5fbc3082c7
commit 4c55967ce2
30 changed files with 245 additions and 11771 deletions

7
back/oth/_category_.json Normal file
View File

@@ -0,0 +1,7 @@
{
"label": "其他常用",
"position": 5,
"link": {
"type": "generated-index"
}
}

18
back/oth/a.md Normal file
View File

@@ -0,0 +1,18 @@
---
sidebar_position: 1
---
# 一些命令
```shell title='在 Windows 环境下,项目打包成 zip 文件:'
# rem 请将“my-site”替换为您想要命名的 zip 文件名称,这将创建一个名为 "my-site.zip" 的 zip 文件。
powershell Compress-Archive -Path build -DestinationPath my-site.zip
```
```shell title='docusaurus 常用命令'
pnpm run build # 构建
pnpm run start # 启动
pnpm run serve # 启动(服务模式)
```