Skip to main content
Version: 3.7.0

📦 插件-Vercel分析

Vercel Analytics 提供对您网站访问者的全面洞察,跟踪热门页面、引荐来源以及地理位置、操作系统和浏览器信息等人口统计数据。

production only

此插件在开发中始终处于非活动状态,仅在生产环境中激活docusaurus build),以避免污染分析统计数据。

安装

npm install --save @docusaurus/plugin-vercel-analytics

配置

接受的字段:

NameTypeDefaultDescription
modestring'auto'Override the automatic environment detection. Read the official docs for details.
debugbooleanundefinedEnable browser console logging of analytics events. Read the official docs for details.

示例配置

您可以通过插件选项配置此插件。

docusaurus.config.js
export default {
plugins: [
[
'vercel-analytics',
{
debug: true,
mode: 'auto',
},
],
],
};