修改 docs/.vuepress/config.ts 配置文件
- 设置 themeConfig.darkMode属性
- 详见 官网
module.exports = {host: 'localhost', // ipport: '8099', //端口号title: '我的技术站', // 设置网站标题description: '描述:我的技术站',base: '/', //默认路径head: [// 设置 favor.ico,docs/.vuepress/public 下['link', { rel: 'icon', href: '/images/logo.png' }]],themeConfig: {// 主题设置darkMode: false,// 去除夜间模式navbar: [...]}
}