mirror of
https://github.com/LiuYuYang01/ThriveX-Admin.git
synced 2026-05-06 21:50:31 +08:00
- 新增 .dockerignore, .env, .gitignore, .prettierrc 等基础配置文件,确保项目环境一致性。 - 添加初始的 Dockerfile 和 Vite 配置,支持项目的容器化和构建。 - 引入 ESLint 和 Prettier 配置,提升代码质量和一致性。 - 创建基本的页面和组件结构,便于后续开发和扩展。
14 lines
390 B
HTML
Executable File
14 lines
390 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>ThriveX 现代化博客管理系统</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|