mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1019 B
28 lines
1019 B
# Configuration
|
|
|
|
Without any configuration, the page is pretty minimal, and the user has no way to navigate around the site. To customize your site, let's first create a `.vitepress` directory inside your docs directory. This is where all VitePress-specific files will be placed. Your project structure is probably like this:
|
|
|
|
```
|
|
.
|
|
├─ docs
|
|
│ ├─ .vitepress
|
|
│ │ └─ config.js
|
|
│ └─ index.md
|
|
└─ package.json
|
|
```
|
|
|
|
The essential file for configuring a VitePress site is `.vitepress/config.js`, which should export a JavaScript object:
|
|
|
|
```js
|
|
export default {
|
|
title: 'VitePress',
|
|
description: 'Just playing around.'
|
|
}
|
|
```
|
|
|
|
In the above example, the site will have the title of `VitePress`, and `Just playing around.` as the description meta tag.
|
|
|
|
Learn everything about VitePress features at [Theme: Introduction](./theme-introduction) to find how to configure specific features within this config file.
|
|
|
|
You may also find all configuration references at [Configs](../config/introduction).
|