Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vurihuang/vuepress-theme-luna

A simple theme for VuePress.
https://github.com/vurihuang/vuepress-theme-luna

blog-theme vuepress-blog vuepress-theme

Last synced: about 1 month ago
JSON representation

A simple theme for VuePress.

Awesome Lists containing this project

README

        

# VuePress Theme Luna

A simple blog theme for [VuePress](https://github.com/vuejs/vuepress).

# Theme Configuration

Here is some options for this theme configuration.

```
module.exports = {
title: `This is title`,
description: 'This is description',
base: '/',
configureWebpack: {
resolve: {
alias: {
'@alias': './public'
}
}
},
markdown: {
anchor: { permalink: false },
toc: { includeLevel: [1, 2, 3] },
lineNumbers: true
},
themeConfig: {
nav: [
{ text: 'Home', link: '/' },
]
},
evergreen: true
};
```