diff --git a/docs/config/introduction.md b/docs/config/introduction.md index 673bfd87..8128105f 100644 --- a/docs/config/introduction.md +++ b/docs/config/introduction.md @@ -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. diff --git a/docs/index.md b/docs/index.md index 88b97db8..ed4e748c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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. diff --git a/package.json b/package.json index 12fd7d68..d1cd5fe0 100644 --- a/package.json +++ b/package.json @@ -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",