From 8e190aa411d3e6a189973fffef2b940dd88b97c5 Mon Sep 17 00:00:00 2001 From: Fuqiao Xue Date: Thu, 4 Aug 2022 07:22:17 +0000 Subject: [PATCH] docs: add `outDir` (#1116) Co-authored-by: Divyansh Singh <40380293+brc-dd@users.noreply.github.com> --- docs/config/app-configs.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/config/app-configs.md b/docs/config/app-configs.md index 21f4c112dcda..0e65f790c94f 100644 --- a/docs/config/app-configs.md +++ b/docs/config/app-configs.md @@ -171,6 +171,19 @@ interface MarkdownOptions extends MarkdownIt.Options { } ``` +## outDir + +- Type: `string` +- Default: `./.vitepress/dist` + +The build output location for the site, relative to project root (`docs` folder if you're running `vitepress build docs`). + +```ts +export default { + outDir: '../public' +} +``` + ## title - Type: `string`