docs(文档): 添加项目文档和入口文件

- 添加 README.md 项目说明文档
- 添加 index.html 应用入口文件
- 完善项目使用说明和配置指南
This commit is contained in:
gaoziman 2025-11-05 09:49:23 +08:00
parent f77675e5fc
commit d5dcd6780c
2 changed files with 32 additions and 0 deletions

14
README.md Normal file
View File

@ -0,0 +1,14 @@
# Arco Design Pro
## 快速开始
```
// 初始化项目
npm install
// 开发模式
npm run dev
// 构建
npm run build
```

18
index.html Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="shortcut icon"
type="image/x-icon"
href="https://unpkg.byted-static.com/latest/byted/arco-config/assets/favicon.ico"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Arco Design Pro - 开箱即用的中台前端/设计解决方案</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>