Nuxt Clarity 分析
一个将 Clarity 分析轻松集成到您的 Nuxt 3 项目中的模块。
!注意 我建议您尝试使用 Nuxt Scripts,这是一个更完整的解决方案。
特性
- ✅ 使用 Nitro (SSR 和 SSG) 的 Nuxt 3
快速设置
- 将
nuxt-clarity-analytics
依赖项添加到您的项目中
npx nuxi@latest module add clarity-analytics
- 将
nuxt-clarity-analytics
添加到nuxt.config.ts
的modules
部分
export default defineNuxtConfig({
modules: [
'nuxt-clarity-analytics'
]
})
然后,您必须在环境变量中注册您的 Clarity ID 项目 NUXT_CLARITY_ID
。
搞定!
您可以通过在浏览器上检查您的页面来轻松检查脚本是否正确注入。请注意,如果缺少密钥,则不会注入任何内容!
您还可以使用实用工具 clarityContent
在用户同意时使用 Cookie。它是 window.clarity
的包装器。 请参阅 Clarity 文档。
开发
# Install dependencies
npm install
# Generate type stubs
npm run dev:prepare
# Develop with the playground
npm run dev
# Build the playground
npm run dev:build
# Run ESLint
npm run lint
# Run Vitest
npm run test
npm run test:watch
# Release new version
npm run release