You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
vitepress/docs/guide/theme-footer.md

614 B

Footer

When the page layout is set to either home or page, VitePress will display global footer at the bottom of the page. Set themeConfig.footer to configure footer content.

export default {
  themeConfig: {
    footer: {
      message: 'Released under the MIT License.',
      copyright: 'Copyright © 2019-present Evan You'
    }
  }
}
export interface Footer {
  // The message shown rigth before copyright.
  message?: string

  // The actual copyright text.
  copyright?: string
}

Note that footer will not be displayed when the page layout is set to doc.