Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/vurihuang/vuepress-theme-luna
- Owner: vurihuang
- Created: 2018-08-22T02:20:58.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-22T03:09:00.000Z (over 6 years ago)
- Last Synced: 2024-05-06T15:23:34.957Z (7 months ago)
- Topics: blog-theme, vuepress-blog, vuepress-theme
- Language: Vue
- Homepage: https://upeoe.github.io/
- Size: 69.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-starred - vurihuang/vuepress-theme-luna - A simple theme for VuePress. (others)
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
};
```