diff --git a/docs/content/2.projects.md b/docs/content/2.projects.md index 0b6f4059..3cab8827 100644 --- a/docs/content/2.projects.md +++ b/docs/content/2.projects.md @@ -19,7 +19,7 @@ Packages Vue 3 --- title: Plausible logo: plausible.png - description: Plausible is a lightweight and open-source Google Analytics alternative. Your website data is 100% yours and the privacy of your visitors is respected. + description: Plausible is a lightweight and open-source Google Analytics alternative. Your website data is ... username: '@productdevbook' href: /guide/vue-packages/plausible --- @@ -29,7 +29,7 @@ Packages Vue 3 --- title: ChatWoot logo: chatwoot.png - description: Chatwoot is an open-source customer engagement platform that helps companies engage their customers on their website, Facebook page, Twitter, Whatsapp, SMS, ... + description: Chatwoot is an open-source customer engagement platform that helps companies ... username: '@productdevbook' href: /guide/vue-packages/chatwoot --- @@ -46,7 +46,7 @@ Packages Nuxt 3 --- title: Plausible logo: plausible.png - description: Plausible is a lightweight and open-source Google Analytics alternative. Your website data is 100% yours and the privacy of your visitors is respected. + description: Plausible is a lightweight and open-source Google Analytics alternative. Your website data is ... username: '@productdevbook' href: /guide/nuxt-packages/plausible --- @@ -66,7 +66,7 @@ Packages Nuxt 3 --- title: ChatWoot (soon) logo: chatwoot.png - description: Chatwoot is an open-source customer engagement platform that helps companies engage their customers on their website, Facebook page, Twitter, Whatsapp, SMS, ... + description: Chatwoot is an open-source customer engagement platform that helps companies ... username: '@productdevbook' href: /guide/nuxt-packages/chatwoot --- diff --git a/docs/nuxt.config.ts b/docs/nuxt.config.ts index bdf0953d..9ec93a40 100755 --- a/docs/nuxt.config.ts +++ b/docs/nuxt.config.ts @@ -2,23 +2,12 @@ const alias = {} export default defineNuxtConfig({ alias, - app: { - head: { - script: [ - { - defer: true, - 'data-domain': 'content.nuxtjs.org', - src: 'https://plausible.io/js/script.js' - } - ] - } - }, nitro: { prerender: { routes: ['/', '/blog/announcing-v2'] } }, - modules: ['@nuxtlabs/github-module'], + modules: ['@nuxtlabs/github-module', '@huntersofbook/plausible-nuxt'], extends: process.env.DOCUS_THEME_PATH || '@nuxt-themes/docus', github: { owner: 'huntersofbook', @@ -27,5 +16,11 @@ export default defineNuxtConfig({ }, colorMode: { preference: 'dark' + }, + huntersofbookPlausible: { + init: { + apiHost: process.env.PLAUSIBLE, + domain: 'opensource.huntersofbook.com' + } } })