2024-07-11 05:14:11 +08:00

786 B

title, author, createTime, permalink
title author createTime permalink
百度统计 pengzhanbo 2024/03/06 12:22:57 /config/plugins/baidu-tongji/

::: caution 主题计划在 未来的版本中 从内置插件中移除此插件。 :::

概述

为站点添加 百度统计。该插件默认不启用。

关联插件: @vuepress-plume/plugin-baidu-tongji

配置

key

  • 类型:string
  • 默认值:''

配置百度统计的key

启用

import { plumeTheme } from 'vuepress-theme-plume'
import { defineUserConfig } from 'vuepress'

export default defineUserConfig({
  theme: plumeTheme({
    plugins: {
      baiduTongji: {
        key: '你的百度统计key'
      }
    }
  }),
})