11. Vuepress2.x disable night mode

Modify the docs/.vuepress/config.ts configuration file

 


module.exports = {
    host: 'localhost', // ip
    port: '8099', //端口号
    title: '我的技术站', // 设置网站标题
    description: '描述:我的技术站',
    base: '/', //默认路径
    head: [
        // 设置 favor.ico,docs/.vuepress/public 下
        [
            'link', { rel: 'icon', href: '/images/logo.png' }
        ]
    ],
    themeConfig: {// 主题设置
        darkMode: false,// 去除夜间模式
        navbar: [...]
    }
}

おすすめ

転載: blog.csdn.net/sinat_31213021/article/details/124625353