-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
65 lines (63 loc) · 2.28 KB
/
astro.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import starlight from '@astrojs/starlight';
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'Aethir 中文指南',
social: {
github: 'https://github.com/demianDAO/aethir-docs'
},
sidebar: [
{
label: '新手指南',
items: [
// Each item here is one entry in the navigation menu.
{
label: '隐私、区块链和去中心化的未来',
link: '/guides/future-of-privacy-blockchain-dci'
},
{
label: 'Aethir简介:为云基础架构的未来赋能',
link: '/guides/introducing-aethir-empowering-the-future-of-cloud'
},
{ label: '什么是云游戏?', link: '/guides/what-is-cloud-gaming' },
{
label: '区块链会如何改变云游戏?',
link: '/guides/blockchian-change-cloud-game'
},
{
label: 'IMX 对去中心化游戏的探索',
link: '/guides/imx-game'
},
{
label: '《Deadrop》今年最热门的 Web3 游戏即将上线',
link: '/guides/deadrop-game-web3'
},
{
label: '游戏的未来就在这里:揭开生成式人工智能革命的面纱',
link: '/guides/the-future-gaming'
},
{
label: '看不见的人工智能创新引擎: 开源项目',
link: '/guides/the-unseen-engine-of-ai'
},
{ label: '什么是Aethir', link: '/guides/what-is-aethir' },
{ label: '艾瑟尔新手指南', link: '/guides/aethir-guide' },
{ label: '埃瑟尔的进度更新#1', link: '/guides/progress-update-1' },
{
label: '埃瑟尔完成 1.5 亿美元的 Pre-A 轮融资',
link: '/guides/aethir-closes-150-m'
}
]
},
{
label: 'Reference',
autogenerate: { directory: 'reference' }
}
]
})
],
// Process images with sharp: https://docs.astro.build/en/guides/assets/#using-sharp
image: { service: { entrypoint: 'astro/assets/services/sharp' } }
});