Native integration of Plausible Analytics for Nuxt.
- π» No configuration necessary
- π― Track events and page views manually with composables
- π Automatic tracking of outbound links, file downloads, and form submissions
- π Optional API proxy to avoid ad blockers
- π
.envfile support - π§Ί Sensible default options
- π¦Ύ SSR-ready
npx nuxt module add plausibleAdd @nuxtjs/plausible to the modules section of your Nuxt configuration:
// `nuxt.config.ts`
export default defineNuxtConfig({
modules: ['@nuxtjs/plausible'],
})Done! Plausible will now run in your application's client.
Tip
By default, @nuxtjs/plausible will use window.location.hostname for the Plausible domain configuration key, which should suit most use cases. If you need to customize the domain, you can do so in the module options.
All supported module options can be configured using the plausible key in your Nuxt configuration:
export default defineNuxtConfig({
modules: ['@nuxtjs/plausible'],
plausible: {
// Prevent tracking on localhost
ignoredHostnames: ['localhost'],
},
})Tip
To allow tracking events on localhost, set the ignoredHostnames option to an empty array.
Alternatively, leveraging automatically replaced public runtime config values by matching environment variables at runtime, set your desired option in your project's .env file:
# Sets the `plausible.domain` option to `example.com`
NUXT_PUBLIC_PLAUSIBLE_DOMAIN=example.comWith this setup, you can omit the plausible key in your Nuxt configuration.
The module provides a proxy feature that routes Plausible events through your Nitro server instead of sending them directly to Plausible's servers. This is useful to prevent ad blockers from blocking requests to Plausible's domain.
To enable the proxy, set the proxy option to true:
export default defineNuxtConfig({
modules: ['@nuxtjs/plausible'],
plausible: {
proxy: true,
},
})Note
When enabled, all Plausible events will be sent to your server first, which then forwards them to Plausible's API. The default proxy endpoint is /_plausible, but you can customize the path using the proxyBaseEndpoint module option.
The module supports automatic tracking of outbound link clicks, file downloads, and form submissions β all powered by the official Plausible tracker.
export default defineNuxtConfig({
modules: ['@nuxtjs/plausible'],
plausible: {
autoOutboundTracking: true,
fileDownloads: true,
formSubmissions: true,
},
})By default, file download tracking covers common file types (pdf, xlsx, docx, zip, etc.). You can customize which file extensions are tracked:
export default defineNuxtConfig({
modules: ['@nuxtjs/plausible'],
plausible: {
fileDownloads: { fileExtensions: ['pdf', 'zip', 'csv'] },
},
})Note
These features require the corresponding goals to be configured in your Plausible dashboard. Outbound link clicks are tracked as Outbound Link: Click, file downloads as File Download, and form submissions as Form: Submission.
| Option | Type | Default | Description |
|---|---|---|---|
enabled |
boolean |
true |
Whether the tracker shall be enabled. |
hashMode |
boolean |
false |
Whether page views shall be tracked when the URL hash changes. Enable this if your Nuxt app uses hash-based routing. |
domain |
string |
'window.location.hostname' |
The domain to bind tracking events to. |
ignoredHostnames |
string[] |
['localhost'] |
Hostnames to ignore when tracking events. |
ignoreSubDomains |
boolean |
false |
Also ignore subdomains of ignoredHostnames. |
apiHost |
string |
'https://plausible.io' |
The API host where events will be sent to. |
autoPageviews |
boolean |
true |
Track page views automatically. Disable this if you want to manually manage pageview tracking. |
autoOutboundTracking |
boolean |
false |
Track outbound link clicks automatically. |
fileDownloads |
boolean | { fileExtensions: string[] } |
false |
Track file downloads automatically. Pass an object to customize tracked file extensions. |
formSubmissions |
boolean |
false |
Track form submissions automatically. |
logIgnoredEvents |
boolean |
false |
Log ignored events to the console. |
proxy |
boolean |
false |
Proxy the event endpoint through the current origin. |
proxyBaseEndpoint |
string |
'/_plausible' |
The base endpoint path for the proxy. |
As with other composables in the Nuxt ecosystem, they are auto-imported and can be used in your application's components.
Note
Since the Plausible instance is only available on the client, executing the composables on the server will have no effect.
Track a custom event. Track your defined goals by passing the goal's name as the argument eventName.
Type Declarations
function useTrackEvent(
eventName: string,
options?: PlausibleEventOptions,
): voidExample
// Tracks the `signup` goal
useTrackEvent('signup')
// Tracks the `Download` goal passing a `method` property
useTrackEvent('Download', { props: { method: 'HTTP' } })
// Tracks the `Purchase` goal with revenue data
useTrackEvent('Purchase', { revenue: { amount: 15.99, currency: 'USD' } })Manually track a page view.
Type Declarations
function useTrackPageview(
options?: PlausibleEventOptions,
): voidExample
useTrackPageview()
// Track with a custom URL
useTrackPageview({ url: '/virtual-page' })- Clone this repository
- Enable Corepack using
corepack enable - Install dependencies using
pnpm install - Run
pnpm run dev:prepare - Start development server using
pnpm run dev
MIT License Β© 2022-PRESENT Johann Schopplich
