-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b914db3
commit f6fe2a3
Showing
8 changed files
with
61 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
import { defineConfig } from 'vitepress' | ||
import { sharedConfig } from './shared' | ||
import { pagefindPlugin } from 'vitepress-plugin-pagefind' | ||
|
||
export default defineConfig({ | ||
...sharedConfig, | ||
vite: { | ||
plugins: [pagefindPlugin()], | ||
} | ||
...sharedConfig | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,5 +40,4 @@ features: | |
- title: 数据可视化 | ||
icon: 📦 | ||
details: 管理端可以直观看到各版本的下载量、单日/每月的下载量、服务器的玩家数量和服务器状态等。 | ||
--- | ||
|
||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
page: true | ||
title: Meet the Team | ||
--- | ||
|
||
<script setup> | ||
import { VPTeamMembers } from 'vitepress/theme' | ||
|
||
const members = [ | ||
{ | ||
avatar: 'https://avatars.githubusercontent.com/u/57002549?v=4', | ||
name: 'Gabriel Ryder', | ||
title: '', | ||
links: [ | ||
{ icon: 'github', link: 'https://github.com/6get-xiaofan' } | ||
] | ||
}, | ||
{ | ||
avatar: 'https://avatars.githubusercontent.com/u/166266777?v=4', | ||
name: 'fusheng357', | ||
title: '', | ||
links: [ | ||
{ icon: 'github', link: 'https://github.com/fusheng357' } | ||
] | ||
} | ||
] | ||
</script> | ||
|
||
# 认识团队 | ||
|
||
<VPTeamMembers size="small" :members="members" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.