Skip to content

页脚配置

config.mjs 文件下的 themeConfig 里面输入下面的代码

js
export default {
  themeConfig: {
    footer: {
      message: 'Released under the MIT License.',
      copyright: 'Copyright © 2019-present Evan You'
    }
  }
}

如果您想配置页脚文本有一些链接,您可以按如下方式调整配置:

js
export default {
  themeConfig: {
    footer: {
      message: 'Released under the <a href="https://github.com/Mackxin/vitehub">MIT License</a>.',
      copyright: 'Copyright © 2019-present <a href="http://baoxiaobao.asia/">宝小宝</a>'
    }
  }
}

注意

请注意,当 SideBar(侧边栏) 可见时,页脚将不会显示

Released under the MIT License