Skip to content

Commit

Permalink
fixed:Optimization of directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Tinie13 committed Jan 25, 2024
1 parent 528f4bd commit 3523755
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 12 deletions.
33 changes: 27 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,37 @@ Node.js version >= 18.14.1
Inside of your Astro + Starlight project, you'll see the following folders and files:

```
.
├── public/
├── src/
├── public/ # Static Assest
│ ├── font/
│ ├── img/
├── src/ # Source Directory
│ ├── assets/
│ ├── components/ # Common Components
│ │ ├── cloud/
│ │ ├── common/ # General Components
│ │ ├── contributors/
│ │ ├── home/ # Homepage Components
│ │ ├── icon/
│ │ ├── markdownSet/
│ │ ├── starlight/
│ ├── content/
│ │ ├── docs/
│ │ ├── blog/ # Blog Directory
│ │ ├── docs/ # Docs Directory
│ │ └── config.ts
│ ├── i18n/ # International entry configuration
│ │ └── en/
│ │ └── zh-cn/
│ ├── layouts/ # Basic layout of the project
│ ├── pages/
│ ├── style/
│ └── consts.ts # Project Constant Management
│ └── env.d.ts
├── astro.config.mjs
├── package.json
│ └── util.ts # General utility functions
├── astro.config.mjs # Astro profile
├── package.json
├── tailwind.config.json # tailwindcss profile
├── themeColor.json
└── tsconfig.json
```

Expand Down
33 changes: 27 additions & 6 deletions README.zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,37 @@ Node.js 版本 >= 18.14.1
在 Astro + Starlight 项目中,您将看到以下文件夹和文件:

```
.
├── public/
├── src/
├── public/ # 静态资源
│ ├── font/
│ ├── img/
├── src/ # 源代码目录
│ ├── assets/
│ ├── components/ # 公共组件
│ │ ├── cloud/
│ │ ├── common/ # 通用组件
│ │ ├── contributors/
│ │ ├── home/ # 首页组件
│ │ ├── icon/
│ │ ├── markdownSet/
│ │ ├── starlight/
│ ├── content/
│ │ ├── docs/
│ │ ├── blog/ # 博客目录
│ │ ├── docs/ # 文档目录
│ │ └── config.ts
│ ├── i18n/ # 国际化词条配置
│ │ └── en/
│ │ └── zh-cn/
│ ├── layouts/ # 项目基础布局
│ ├── pages/
│ ├── style/
│ └── consts.ts # 项目常量管理
│ └── env.d.ts
├── astro.config.mjs
├── package.json
│ └── util.ts # 通用工具函数
├── astro.config.mjs # Astro 配置文件
├── package.json
├── tailwind.config.json #tailwindcss配置文件
├── themeColor.json
└── tsconfig.json
```

Expand Down

0 comments on commit 3523755

Please sign in to comment.