Docs config
The document style referred to here refers to having a Home pag, which is very suitable as a comprehensive technical website, eg. showcase
docusaurus config
docusaurus.config.ts
const config: Config = {
title: 'Docs-Guides',
tagline: 'Docs Demo',
// 网站 ico 图标
favicon: 'img/favicon.ico',
// 项目的最终访问地址
url: '',
// 项目子路径,按需配置
// 如果不存在子目录,这里配置为 '/',因此最终访问地址为 https://domain-name
// 本项目示例子目录 'guide/',因此最终访问地址为 https://domain-name/guide/
baseUrl: 'guide/',
themeConfig: {
navbar: {
// 左上角导航名字
title: 'Docs Guides',
logo: {
// logo 描述
alt: 'My Site Logo',
// 默认主题 logo
src: 'img/logo.svg',
// dark 主题 logo
srcDark: 'img/logo.svg',
// 指定开始页(定位到 docs 目录下的 intro 文件)
// 如果指定 logo 跳转到指定 docs 目录(没有主页,很适合作为文档风格),则配置 '/docs/intro',
// 默认是该网站的首页 '/'
href: '/'
},
...
}
}
}
More related docusaurus.config.ts configurations are available docusaurus.config.js