docs: fix broken build

pull/687/head
Kia King Ishii 3 years ago
parent abe4410f07
commit 8ab5717a74

@ -11,7 +11,7 @@ Place your configuration file at `.vitepress/config.js`. This is where all ViteP
└─ package.json
```
VitePress comes with 2 types of configs. One is the [App Configs](./app-configs) which configures the site's fundamental features such as setting title of the site, or customize how markdown parser works. Second is the [Theme Config](./theme-config) which configures the theme of the site, for example, adding a sidebar, or add features such as "Edit this page on GitHub" link.
VitePress comes with 2 types of configs. One is the [App Configs](./app-configs) which configures the site's fundamental features such as setting title of the site, or customize how markdown parser works. Second is the [Theme Config](./theme-configs) which configures the theme of the site, for example, adding a sidebar, or add features such as "Edit this page on GitHub" link.
There's also another configuration you may do in [Frontmatter](./frontmatter-configs). Frontmatter configs can override global configs defined on App Configs or Theme Configs for that specific page. However, there're several options that are only available at frontmatter as well.

@ -17,7 +17,7 @@ hero:
link: https://github.com/vuejs/vitepress
features:
- title: Vite: The DX that can't be beat
- title: "Vite: The DX that can't be beat"
details: Feel the speed of Vite. Instant server start and lightning fast HMR that stays fast regardless of the app size.
- title: Designed to be simplicity first
details: With Markdown-centered content, it's built to help you focus on writing and deployed with minimum configuration.

@ -59,7 +59,7 @@
"lint-fail": "pnpm run format-fail",
"test": "vitest -r __tests__",
"test-run": "vitest run -r __tests__",
"check": "run-s lint test-run build",
"check": "run-s lint test-run docs-build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "node scripts/release.js",
"docs": "run-p dev docs-dev",

Loading…
Cancel
Save