This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. | |
βββ LICENSE | |
βββ README.md | |
βββ launch.js | |
βββ package.json | |
βββ prepare.js | |
βββ src | |
β βββ assets | |
β β βββ images | |
β β βββ NativeScript-Vue.png |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
backend: | |
name: github | |
repo: andreliem/vuepress-netlify-cms | |
branch: master # Branch to update (optional; defaults to master) | |
media_folder: "docs/.vuepress/public/images" | |
public_folder: "docs/.vuepress/dist/" | |
collections: | |
- name: "doc" # Used in routes, e.g., /admin/collections/blog | |
label: "Doc" # Used in the UI | |
folder: "docs" # The path to the folder where the documents are stored |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
title: 'Netlify CMS + VuePress', | |
description: 'Netlify + VuePress', | |
themeConfig: { | |
docsDir: 'docs', | |
repo: 'andreliem/vuepress-netlify-cms', | |
sidebar: [ | |
'/', | |
'/welcome', | |
'/test' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. | |
βββ components | |
β βββ PostLayout.vue | |
βββ config.js | |
βββ dist | |
βββ public | |
βββ admin | |
β βββ config.yml | |
β βββ index.html | |
βββ images |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
βββ docs | |
β βββ README.md | |
β βββ test.md | |
β βββ welcome.md |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scripts": { | |
"docs:dev": "vuepress dev docs", | |
"docs:build": "vuepress build docs" | |
}, | |
"devDependencies": { | |
"vuepress": "^0.9.0" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. | |
βββ LICENSE | |
βββ README.md | |
βββ docs | |
β βββ README.md | |
β βββ test.md | |
β βββ welcome.md | |
βββ netlify.toml | |
βββ package.json | |
βββ yarn.lock |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default { | |
head () { | |
let post = this.post | |
return { | |
title: post.meta.name, | |
meta: [ | |
{ | |
hid: `description`, | |
name: 'description', | |
content: post.meta.content |
NewerOlder