The document is only used for theme display, please go to the official site for the latest Vuepress documentation
Plugin API
Plugin API is supported by @vuepress/coreopen in new window package. You could check out Node API for how to use the VuePress app instance in plugin hooks.
Overview
Plugins should be used before initialization. The basic options will be handled once the plugin is used:
The following hooks will be processed when initializing app:
The following hooks will be processed when preparing files:
The following hooks will be processed in dev / build:
Check out Advanced > Architecture > Core Process and Hooks to understand the process better.
Basic Options
name
- Type: - string
- Details: - Name of the plugin. - It will be used for identifying plugins to avoid using a same plugin multiple times, so make sure to use a unique plugin name. - It should follow the naming convention: - Non-scoped: vuepress-plugin-foo
- Scoped: @org/vuepress-plugin-foo
 
- Non-scoped: 
- Also see: 
multiple
- Type: - boolean
- Default: - false
- Details: - Declare whether the plugin can be used multiple times. - If set to - false, when using plugins with the same name, the one used previously will be replaced by the one used later.- If set to - true, plugins with the same name could be used multiple times and won't be replaced.
- Also see: 
Development Hooks
alias
- Type: - Record<string, any> | ((app: App) => Record<string, any>)
- Details: - Path aliases definition. - This hook accepts an object or a function that returns an object. 
- Example: 
module.exports = {
  alias: {
    '@alias': path.resolve(__dirname, './path/to/alias'),
  },
}
2
3
4
5
define
- Type: - Record<string, any> | ((app: App) => Record<string, any>)
- Details: - Define global constants replacements. - This hook accepts an object or a function that returns an object. - This can be useful for passing variables to client files. Note that the values will be automatically processed by - JSON.stringify().
- Example: 
module.exports = {
  define: {
    __GLOBAL_BOOLEAN__: true,
    __GLOBAL_STRING__: 'foobar',
    __GLOBAL_OBJECT__: { foo: 'bar' },
  },
}
2
3
4
5
6
7
extendsMarkdown
- Type: - (md: Markdown, app: App) => void | Promise<void>
- Details: - Markdown enhancement. - This hook accepts a function that will receive an instance of - Markdownpowered by markdown-itopen in new window in its arguments.- This can be used for using extra markdown-it plugins and implementing customizations. 
- Example: 
module.exports = {
  extendsMarkdown: (md) => {
    md.use(plugin1)
    md.linkify.set({ fuzzyEmail: false })
  },
}
2
3
4
5
6
extendsPageOptions
- Type: - (options: PageOptions, app: App) => PageOptions | Promise<PageOptions>
- Details: - Page options extension. - This hook accepts a function that will receive the raw options of the page. The returned object will be merged into page options, which will be used to create the page. 
- Example: 
Set permalink pattern for pages in _posts directory:
module.exports = {
  extendsPageOptions: ({ filePath }) => {
    if (filePath?.startsWith('_posts/')) {
      return {
        frontmatter: {
          permalinkPattern: '/:year/:month/:day/:slug.html',
        },
      }
    }
    return {}
  },
}
2
3
4
5
6
7
8
9
10
11
12
extendsPageData
- Type: - (page: Page, app: App) => Record<string, any> | Promise<Record<string, any>>
- Details: - Page data extension. - This hook accepts a function that will receive an instance of - Page. The returned object will be merged into page data, which can be used in client side code.
- Example: 
module.exports = {
  extendsPageData: (page) => {
    const meta = 'foobar'
    return { meta }
  },
}
2
3
4
5
6
In client component:
import { usePageData } from '@vuepress/client'
export default {
  setup() {
    const page = usePageData()
    console.log(page.value.meta) // foobar
  },
}
2
3
4
5
6
7
8
Client Files Hooks
clientAppEnhanceFiles
- Type: - string | string[] | ((app: App) => string | string[] | Promise<string | string[]>)
- Details: - Paths of client app enhancement files. - This hook accepts absolute file paths, or a function that returns the paths. - Files listed in this hook will be invoked after the client app is created to make some enhancement to it. 
- Example: 
const { path } = require('@vuepress/utils')
module.exports = {
  clientAppEnhanceFiles: path.resolve(__dirname, './path/to/clientAppEnhance.js'),
}
2
3
4
5
clientAppRootComponentFiles
- Type: - string | string[] | ((app: App) => string | string[] | Promise<string | string[]>)
- Details: - Paths of client app root component files. - This hook accepts absolute file paths, or a function that returns the paths. - Components listed in this hook will be rendered to the root node of the client app. 
- Example: 
const { path } = require('@vuepress/utils')
module.exports = {
  clientAppRootComponentFiles: path.resolve(__dirname, './path/to/RootComponent.vue'),
}
2
3
4
5
clientAppSetupFiles
- Type: - string | string[] | ((app: App) => string | string[] | Promise<string | string[]>)
- Details: - Paths of client app setup files. - This hook accepts absolute file paths, or a function that returns the paths. - Files listed in this hook will be invoked in the setupopen in new window function of the client app. 
- Example: 
const { path } = require('@vuepress/utils')
module.exports = {
  clientAppSetupFiles: path.resolve(__dirname, './path/to/clientAppSetup.js'),
}
2
3
4
5
- Also see:
Lifecycle Hooks
onInitialized
- Type: - (app: App) => void | Promise<void>
- Details: - This hook will be invoked once VuePress app has been initialized. 
onPrepared
- Type: - (app: App) => void | Promise<void>
- Details: - This hook will be invoked once VuePress app has finished preparation. 
onWatched
- Type: - (app: App, watchers: Closable[], restart: () => Promise<void>) => void | Promise<void>
- Details: - This hook will be invoked once VuePress app has started dev-server and watched files change. - The - watchersis an array of file watchers. When changing config file, the dev command will be restarted and those watchers will be closed. If you are adding new watchers in this hook, you should push your watchers to the- watchersarray, so that they can be closed correctly when restarting.- The - restartis a method to restart the dev command. When calling this method, the- watchersarray will be closed automatically.
onGenerated
- Type: - (app: App) => void | Promise<void>
- Details: - This hook will be invoked once VuePress app has generated static files.