mirror of https://github.com/vuejs/vitepress
parent
6931ebd22a
commit
96b5218056
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"dev": "vitepress dev src",
|
||||||
|
"build": "vitepress build src"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"vitepress": "^0.7.2"
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,28 @@
|
|||||||
|
module.exports = {
|
||||||
|
lang: 'en-US',
|
||||||
|
title: 'VitePress',
|
||||||
|
description: 'Vite & Vue powered static site generator.',
|
||||||
|
|
||||||
|
themeConfig: {
|
||||||
|
repo: 'vuejs/vitepress',
|
||||||
|
docsDir: 'docs',
|
||||||
|
editLinkText: 'Edit this page on GitHub',
|
||||||
|
|
||||||
|
nav: [
|
||||||
|
{ text: 'Guide', link: '/guide/what-is-vitepress' },
|
||||||
|
{
|
||||||
|
text: 'Release Notes',
|
||||||
|
link: 'https://github.com/vuejs/vitepress/releases'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
|
sidebar: [
|
||||||
|
{
|
||||||
|
text: 'Introduction',
|
||||||
|
children: [
|
||||||
|
{ text: 'What is VitePress?', link: '/guide/what-is-vitepress' }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
# What is VitePress
|
||||||
|
|
||||||
|
Hello, world!
|
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
home: true
|
||||||
|
---
|
||||||
|
|
||||||
|
# Home
|
||||||
|
|
||||||
|
Hello, world!
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue