10000 docs: (wip) move to wordpress · vuejs-pl/vue-cli@703c977 · GitHub
[go: up one dir, main page]

Skip to content

Commit 703c977

Browse files
committed
docs: (wip) move to wordpress
1 parent 7e38f98 commit 703c977

26 files changed

+1176
-404
lines changed

docs/.vuepress/config.js

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
module.exports = {
2+
locales: {
3+
'/': {
4+
lang: 'en-US',
5+
title: 'Vue CLI',
6+
description: 'Standard Tooling for Vue.js Projects'
7+
}
8+
},
9+
serviceWorker: true,
10+
theme: 'vue',
11+
themeConfig: {
12+
repo: 'vuejs/vue-cli',
13+
docsDir: 'docs',
14+
docsBranch: 'dev',
15+
editLinks: true,
16+
sidebarDepth: 3,
17+
locales: {
18+
'/': {
19+
label: 'English',
20+
selectText: 'Languages',
21+
lastUpdated: 'Last Updated',
22+
editLinkText: 'Edit this page on GitHub',
23+
nav: [
24+
{
25+
text: 'Guide',
26+
link: '/guide/'
27+
},
28+
{
29+
text: 'Config Reference',
30+
link: '/config/'
31+
},
32+
{
33+
text: 'Dev Guide',
34+
items: [
35+
{ text: 'Plugin Dev Guide', link: '/dev-guide/plugin-dev.md' },
36+
{ text: 'UI Plugin Dev Guide', link: '/dev-guide/ui-plugin-dev.md' },
37+
{ text: 'UI Localization', link: '/dev-guide/ui-localization.md' }
38+
]
39+
},
40+
{
41+
text: 'Changelog',
42+
link: 'https://github.com/vuejs/vue-cli/blob/dev/CHANGELOG.md'
43+
}
44+
],
45+
sidebar: {
46+
'/guide/': [
47+
'/guide/',
48+
'/guide/cli',
49+
'/guide/cli-service',
50+
'/guide/assets',
51+
'/guide/env',
52+
'/guide/build-targets'
53+
],
54+
'/dev-guide/': [
55+
'/dev-guide/plugin-dev.md',
56+
'/dev-guide/ui-plugin-dev.md',
57+
'/dev-guide/ui-localization.md'
58+
]
59+
}
60+
}
61+
}
62+
}
63+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)
0