Skip to content

Commit ed290f2

Browse files
update
1 parent 3772afa commit ed290f2

File tree

13 files changed

+40
-40
lines changed

13 files changed

+40
-40
lines changed

.vitepress/config.mts

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -24,31 +24,31 @@ export default defineConfig({
2424
"/docs/": [
2525
{
2626
text: '🚀 Quick Start',
27-
link: '/docs/guide.html',
27+
link: '/docs/guide',
2828
},
2929
{
3030
text: '🏠 Project Overview',
3131
link: '/docs/introduction'
3232
},
3333
{
3434
text: '⚙️ Source Installation',
35-
link: '/docs/installation/index.html',
35+
link: '/docs/installation/index',
3636
items: [
3737
{
3838
text: '📋 Code Structure',
39-
link: '/docs/installation/index.html',
39+
link: '/docs/installation/index',
4040
},
4141
{
4242
text: '🖥️ Backend Service',
4343
collapsed: true,
4444
items: [
4545
{
46-
text: 'Go Environment',
47-
link: '/docs/installation/server/install-go.html',
46+
text: 'Install Go',
47+
link: '/docs/installation/server/install-go',
4848
},
4949
{
5050
text: 'Service Deployment',
51-
link: '/docs/installation/server/install.html',
51+
link: '/docs/installation/server/install',
5252
}
5353
]
5454
},
@@ -57,12 +57,12 @@ export default defineConfig({
5757
collapsed: true,
5858
items: [
5959
{
60-
text: 'Node.js Environment',
61-
link: '/docs/installation/site/install-node.html',
60+
text: 'Install Node.js',
61+
link: '/docs/installation/site/install-node',
6262
},
6363
{
6464
text: 'Application Deployment',
65-
link: '/docs/installation/site/install-site.html',
65+
link: '/docs/installation/site/install-site',
6666
}
6767
]
6868
},
@@ -75,15 +75,15 @@ export default defineConfig({
7575
},
7676
{
7777
text: '📞 Contact Us',
78-
link: '/docs/contact.md'
78+
link: '/docs/contact'
7979
},
8080
{
8181
text: '📝 Changelog',
82-
link: '/docs/changelog.md'
82+
link: '/docs/changelog'
8383
},
8484
{
8585
text: '❓ FAQ',
86-
link: '/docs/qa.md'
86+
link: '/docs/qa'
8787
},
8888
]
8989
},
@@ -109,31 +109,31 @@ export default defineConfig({
109109
"/zh/docs/": [
110110
{
111111
text: '🚀 快速开始',
112-
link: '/zh/docs/guide.html',
112+
link: '/zh/docs/guide',
113113
},
114114
{
115115
text: '🏠 项目概述',
116116
link: '/zh/docs/introduction'
117117
},
118118
{
119119
text: '⚙️ 源码安装',
120-
link: '/zh/docs/installation/index.html',
120+
link: '/zh/docs/installation/index',
121121
items: [
122122
{
123123
text: '📋 代码结构',
124-
link: '/zh/docs/installation/index.html',
124+
link: '/zh/docs/installation/index',
125125
},
126126
{
127127
text: '🖥️ 后端服务',
128128
collapsed: true,
129129
items: [
130130
{
131-
text: 'Go 环境',
132-
link: '/zh/docs/installation/server/install-go.html',
131+
text: '安装Go',
132+
link: '/zh/docs/installation/server/install-go',
133133
},
134134
{
135135
text: '服务部署',
136-
link: '/zh/docs/installation/server/install.html',
136+
link: '/zh/docs/installation/server/install',
137137
}
138138
]
139139
},
@@ -142,12 +142,12 @@ export default defineConfig({
142142
collapsed: true,
143143
items: [
144144
{
145-
text: 'Node.js 环境',
146-
link: '/zh/docs/installation/site/install-node.html',
145+
text: '安装Node.js',
146+
link: '/zh/docs/installation/site/install-node',
147147
},
148148
{
149149
text: '应用部署',
150-
link: '/zh/docs/installation/site/install-site.html',
150+
link: '/zh/docs/installation/site/install-site',
151151
}
152152
]
153153
},
@@ -160,15 +160,15 @@ export default defineConfig({
160160
},
161161
{
162162
text: '📞 联系我们',
163-
link: '/zh/docs/contact.md'
163+
link: '/zh/docs/contact'
164164
},
165165
{
166166
text: '📝 更新日志',
167-
link: '/zh/docs/changelog.md'
167+
link: '/zh/docs/changelog'
168168
},
169169
{
170170
text: '❓ 常见问题',
171-
link: '/zh/docs/qa.md'
171+
link: '/zh/docs/qa'
172172
},
173173
]
174174
},

docs/guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ Application started. Press CTRL+C to shut down.
264264

265265
1. **查看官方文档**[https://bbs-go.com](https://bbs-go.com)
266266
2. **问题反馈**[https://bbs.bbs-go.com/topics/node/3](https://bbs.bbs-go.com/topics/node/3)
267-
3. **QQ 交流群**[加入官方用户交流群](https://bbs-go.com/docs/contact.html)
267+
3. **QQ 交流群**[加入官方用户交流群](https://bbs-go.com/docs/contact)
268268
4. **GitHub Issues**[在项目页面提交问题](https://github.com/mlogclub/bbs-go/issues)
269269

270270
## 🚀 进阶使用

docs/installation/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Server 模块是整个系统的基础,负责处理所有的业务逻辑和数
144144
4. 配置数据库和其他服务
145145
5. 编译和运行 Server 模块
146146

147-
详细安装步骤请参考:[Server 模块安装](./server/install-go.html)
147+
详细安装步骤请参考:[Server 模块安装](./server/install-go)
148148

149149
### Site 模块安装简介
150150

@@ -156,7 +156,7 @@ Site 模块是面向用户的前台界面,负责内容的展示和用户交互
156156
4. 配置 Site 模块与 Server 的连接
157157
5. 编译和运行 Site 模块
158158

159-
详细安装步骤请参考:[Site 模块安装](./site/install-node.html)
159+
详细安装步骤请参考:[Site 模块安装](./site/install-node)
160160

161161
### Admin 模块安装简介
162162

docs/installation/server/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
1. **Go 语言环境**:推荐使用 Go 1.23 或更高版本
1212
- 可以在终端/命令提示符中输入 `go version` 检查是否正确安装及版本信息
13-
- 如果未安装或版本过低,请参考[这篇文档](./install-go.html)进行安装
13+
- 如果未安装或版本过低,请参考[这篇文档](./install-go)进行安装
1414

1515
2. **MySQL 数据库**:推荐使用 MySQL 8.0 或更高版本
1616
- 确保 MySQL 服务已启动

docs/installation/site/install-node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ pnpm config set registry https://registry.npmmirror.com
292292

293293
成功安装 Node.js 环境后,您可以继续安装和配置 bbs-go 的 site 模块:
294294

295-
1. [安装 site 模块](./install-site.html)
295+
1. [安装 site 模块](./install-site)
296296
2. 配置并启动 site 模块
297297

298298
如果您还需要安装 admin 模块,请参考相关文档。

docs/installation/site/install-site.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ site 模块基于现代前端技术栈构建:
4242
node -v
4343
```
4444

45-
如果您尚未安装 Node.js 或版本不符合要求,请参考 [Node.js 环境安装](./install-node.html) 进行安装。
45+
如果您尚未安装 Node.js 或版本不符合要求,请参考 [Node.js 环境安装](./install-node) 进行安装。
4646

4747
### 确认 server 模块状态
4848

@@ -53,7 +53,7 @@ site 模块需要与 server 模块通信,因此在安装 site 之前,请确
5353
curl http://localhost:8082
5454
```
5555

56-
如果 server 模块未安装或未运行,请参考 [Server 模块安装](../server/install.html) 进行安装。
56+
如果 server 模块未安装或未运行,请参考 [Server 模块安装](../server/install) 进行安装。
5757

5858
### 获取源代码
5959

index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ hero:
1313
actions:
1414
- theme: brand
1515
text: Quick Start
16-
link: /docs/guide.html
16+
link: /docs/guide
1717
- theme: alt
1818
text: Community
1919
link: https://bbs.bbs-go.com

zh/docs/guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ Application started. Press CTRL+C to shut down.
264264

265265
1. **查看官方文档**[https://bbs-go.com](https://bbs-go.com)
266266
2. **问题反馈**[https://bbs.bbs-go.com/topics/node/3](https://bbs.bbs-go.com/topics/node/3)
267-
3. **QQ 交流群**[加入官方用户交流群](https://bbs-go.com/docs/contact.html)
267+
3. **QQ 交流群**[加入官方用户交流群](https://bbs-go.com/docs/contact)
268268
4. **GitHub Issues**[在项目页面提交问题](https://github.com/mlogclub/bbs-go/issues)
269269

270270
## 🚀 进阶使用

zh/docs/installation/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Server 模块是整个系统的基础,负责处理所有的业务逻辑和数
144144
4. 配置数据库和其他服务
145145
5. 编译和运行 Server 模块
146146

147-
详细安装步骤请参考:[Server 模块安装](./server/install-go.html)
147+
详细安装步骤请参考:[Server 模块安装](./server/install-go)
148148

149149
### Site 模块安装简介
150150

@@ -156,7 +156,7 @@ Site 模块是面向用户的前台界面,负责内容的展示和用户交互
156156
4. 配置 Site 模块与 Server 的连接
157157
5. 编译和运行 Site 模块
158158

159-
详细安装步骤请参考:[Site 模块安装](./site/install-node.html)
159+
详细安装步骤请参考:[Site 模块安装](./site/install-node)
160160

161161
### Admin 模块安装简介
162162

zh/docs/installation/server/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
1. **Go 语言环境**:推荐使用 Go 1.23 或更高版本
1212
- 可以在终端/命令提示符中输入 `go version` 检查是否正确安装及版本信息
13-
- 如果未安装或版本过低,请参考[这篇文档](./install-go.html)进行安装
13+
- 如果未安装或版本过低,请参考[这篇文档](./install-go)进行安装
1414

1515
2. **MySQL 数据库**:推荐使用 MySQL 8.0 或更高版本
1616
- 确保 MySQL 服务已启动

0 commit comments

Comments
 (0)