# Config Reference of VuePress config, which can be set via config file. The conventional config files are (in order of precedence): - In current working directory `cwd`: - `vuepress.config.ts` - `vuepress.config.js` - In source directory `sourceDir`: - `.vuepress/config.ts` - `.vuepress/config.js` You can also specify the config file via `--config` option of [CLI](./cli.md). ## Site Config ### base - Type: `string` - Default: `/` - Details: The base URL the site will be deployed at. You will need to set this if you plan to deploy your site under a sub path. It should always start and end with a slash. For example, if you plan to deploy your site to GitHub pages at `https://foo.github.io/bar/`, then you should set `base` to `"/bar/"`. The `base` is automatically prepended to all the URLs that start with `/` in other options, so you only need to specify it once. - Also see: - [Guide > Assets > Base Helper](../guide/assets.md#base-helper) - [Guide > Deployment](../guide/deployment.md) ### lang - Type: `string` - Default: `en-US` - Details: Language for the site. This will be the `lang` attribute of the `` tag in the rendered HTML. This can be specified in different locales. - Also see: - [Config > locales](#locales) - [Frontmatter > lang](./frontmatter.md#lang) ### title - Type: `string` - Default: `''` - Details: Title for the site. This will be the suffix for all page titles, and displayed in the navbar in the default theme. This can be specified in different locales. - Also see: - [Config > locales](#locales) ### description - Type: `string` - Default: `''` - Details: Description for the site. This will be the `content` attribute of `` tag in the rendered HTML, which will be overrode by the `description` field of page frontmatter. This can be specified in different locales. - Also see: - [Config > locales](#locales) - [Frontmatter > description](./frontmatter.md#description) ### head - Type: `HeadConfig[]` - Default: `[]` - Details: Extra tags to inject into the `
` tag in the rendered HTML. You can specify each tag in the form of `[tagName, { attrName: attrValue }, innerHTML?]`. This can be specified in different locales. - Example: To add a custom favicon: ```js module.exports = { head: [ ['link', { rel: 'icon', href: '/logo.png' }] ] } ``` Rendered as: ```html ``` - Also see: - [Config > locales](#locales) - [Frontmatter > head](./frontmatter.md#head) ### locales - Type: `{ [path: string]: Partial` tag or not. The wrapper is required by the `highlightLines` and `lineNumbers`. That means, if you disable `preWrapper`, the line highlighting and line numbers will also be disabled. You can disable it if you want to implement them in client side. For example, [Prismjs Line Highlight](https://prismjs.com/plugins/line-highlight/) or [Prismjs Line Numbers](https://prismjs.com/plugins/line-numbers/). ##### markdown.code.vPre - Type: `boolean` - Default: `true` - Details: Enable the `v-pre` directive on `` tag or not. - Also see: - [Guide > Markdown > Syntax Extensions > Code Blocks > Wrap with v-pre](../guide/markdown.md#wrap-with-v-pre) #### markdown.customComponent - Type: `undefined | false` - Details: Options for VuePress built-in markdown-it custom-component plugin. Set to `false` to disable this plugin. ::: danger You should not configure it unless you understand what it is for. ::: #### markdown.emoji - Type: `EmojiPluginOptions | false` - Details: Options for [markdown-it-emoji](https://github.com/markdown-it/markdown-it-emoji). Set to `false` to disable this plugin. - Also see: - [Guide > Markdown > Syntax Extensions > Emoji](../guide/markdown.md#emoji) #### markdown.extractHeaders - Type: `ExtractHeadersPluginOptions | false` - Details: Options for VuePress built-in markdown-it extract-headers plugin. It will extract page headers to page data, which will be used for generating sidebar, table of contents, etc. For example, the sidebar of current page is auto generated from the headers that extracted by this plugin. Set to `false` to disable this plugin. #### markdown.hoistTags - Type: `HoistTagsPluginOptions | false` - Details: Options for VuePress built-in markdown-it hoist-tags plugin. It will hoist specific HTML tags in your Markdown to the top-level of SFC. By default, only `