Skip to content

Commit de8a128

Browse files
authoredApr 30, 2024··
feat: ignoreSubDomains module option (#23)
* update @barbapapazes/plausible-tracker * add new ignoreSubDomains option
1 parent a4368ca commit de8a128

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed
 

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ With this setup, you can omit the `plausible` key in your Nuxt configuration.
7070
| `hashMode` | `boolean` | `false` | Whether page views shall be tracked when the URL hash changes. Enable this if your Nuxt app uses the `hashMode` router option instead of the default history mode. |
7171
| `domain` | `string` | `'window.location.hostname'` | The domain to bind tracking event to. |
7272
| `ignoredHostnames` | `string[]` | `['localhost']` | Hostnames to ignore when tracking events. |
73+
| `ignoreSubDomains` | `boolean` | `false` | Ignore also if is a subdomain of `ignoredHostnames`. |
7374
| `apiHost` | `string` | `https://plausible.io` | The API host where the events will be sent to. |
7475
| `autoPageviews` | `boolean` | `true` | Track the current page and all further pages automatically. Disable this if you want to manually manage pageview tracking. |
7576
| `autoOutboundTracking` | `boolean` | `false` | Track all outbound link clicks automatically. If enabled, a [MutationObserver](https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver) automagically detects link nodes throughout the application and binds `click` events to them. |

‎src/module.ts

+8
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,13 @@ export interface ModuleOptions {
4141
*/
4242
ignoredHostnames?: string[]
4343

44+
/**
45+
* Ignore also if is a subdomain of `ignoredHostnames`.
46+
*
47+
* @default false
48+
*/
49+
ignoreSubDomains?: boolean
50+
4451
/**
4552
* The domain to bind tracking event to.
4653
*
@@ -97,6 +104,7 @@ export default defineNuxtModule<ModuleOptions>({
97104
hashMode: false,
98105
domain: '',
99106
ignoredHostnames: ['localhost'],
107+
ignoreSubDomains: false,
100108
trackLocalhost: false,
101109
apiHost: 'https://plausible.io',
102110
autoPageviews: true,

0 commit comments

Comments
 (0)
Please sign in to comment.