0.1.4 โ€ข Published 3 years ago

vuepress-theme-quiet v0.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

vuepress-theme-quiet

NPM

a vuepress blog theme, makes you feel quiet.

preview

https://vuepress-theme-quiet.surge.sh/

Install

$ npm install -D vuepress-theme-quiet
OR yarn add vuepress-theme-quiet

Usage

{
  // use theme
  theme: 'vuepress-theme-quiet',

  // config theme
  themeConfig: {
    nav: [
      { text: 'Home', link: '/' },
      { text: 'Tag', link: '/tag' },
      { text: 'Archive', link: '/archives' },
      { text: 'About', link: '/about' },
      {
        text: '๐Ÿ”ฅ Github',
        link: 'https://github.com/FrankFan/vuepress-theme-quiet',
      },
    ],
    copyright: `ยฉ vuepress-theme-quiet ${new Date().getFullYear()} โค๏ธ๐Ÿงก๐Ÿ’š๐Ÿ’›๐Ÿ’œ๐Ÿ’™`,
    additionalPages: [
      {
        path: '/about/',
        filePath: path.resolve(__dirname, '../about/README.md'),
        frontmatter: {
          layout: 'Post',
        },
      },
    ],
  },
}