Skip to content

Commit 4e92205

Browse files
committed
docs: wip
1 parent a81f7ad commit 4e92205

31 files changed

+1550
-906
lines changed

β€Ždocs/.vuepress/config.js

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
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: 'Plugins',
42+
items: [
43+
{ text: 'Babel', link: 'https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-babel' },
44+
{ text: 'Typescript', link: 'https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-typescript' },
45+
{ text: 'ESLint', link: 'https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-eslint' },
46+
{ text: 'PWA', link: 'https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-pwa' },
47+
{ text: 'Jest', link: 'https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-unit-jest' },
48+
{ text: 'Mocha', link: 'https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-unit-mocha' },
49+
{ text: 'Cypress', link: 'https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-e2e-cypress' },
50+
{ text: 'Nightwatch', link: 'https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-e2e-nightwatch' }
51+
]
52+
},
53+
{
54+
text: 'Changelog',
55+
link: 'https://github.com/vuejs/vue-cli/blob/dev/CHANGELOG.md'
56+
}
57+
],
58+
sidebar: {
59+
'/guide/': [
60+
'/guide/',
61+
{
62+
title: 'CLI',
63+
collapsable: false,
64+
children: [
65+
'/guide/creating-a-project',
66+
'/guide/plugins-and-presets',
67+
'/guide/prototyping',
68+
'/guide/ui'
69+
]
70+
},
71+
{
72+
title: 'Development',
73+
collapsable: false,
74+
children: [
75+
'/guide/cli-service',
76+
'/guide/browser-compatibility',
77+
'/guide/html-and-static-assets',
78+
'/guide/mode-and-env',
79+
'/guide/build-targets',
80+
'/guide/deployment'
81+
]
82+
}
83+
],
84+
'/dev-guide/': [
85+
'/dev-guide/plugin-dev.md',
86+
'/dev-guide/ui-plugin-dev.md',
87+
'/dev-guide/ui-localization.md'
88+
]
89+
}
90+
}
91+
}
92+
}
93+
}
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)