Skip to content

Commit

Permalink
docs: add outDir (#1116)
Browse files Browse the repository at this point in the history
Co-authored-by: Divyansh Singh <40380293+brc-dd@users.noreply.github.com>
  • Loading branch information
xfq and brc-dd committed Aug 4, 2022
1 parent b51549b commit 8e190aa
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/config/app-configs.md
Expand Up @@ -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`
Expand Down

3 comments on commit 8e190aa

@mrcego
Copy link
Contributor

@mrcego mrcego commented on 8e190aa Aug 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ohh finally! Waiting available version to enable this! πŸ‘―

@brc-dd
Copy link
Member

@brc-dd brc-dd commented on 8e190aa Aug 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mrcego This is available on all versions (0.x ones too). It wasn't just documented.

@mrcego
Copy link
Contributor

@mrcego mrcego commented on 8e190aa Aug 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @brc-dd. I was confused, sorry, I was refering to docFooter prop πŸ˜‚. I don't know why I posted it here, my mistake πŸ˜‚

But cool outDir is available too. Thanks for your hard work πŸ‘πŸΎ

Please sign in to comment.