Disable ahoy.js visit tracking on server-side (#8872)
This commit is contained in:
parent
28e428b21e
commit
65341d9c6e
1 changed files with 4 additions and 2 deletions
|
|
@ -685,9 +685,11 @@ var instantClick
|
|||
});
|
||||
|
||||
// INITIALIZE AHOY TRACKING
|
||||
// Setting cookies to false matches what we do in ahoy's initializer
|
||||
// Setting cookies to false matches what we do in ahoy's initializer.
|
||||
// Setting trackVisits to false prevents ahoy from creating a visit on the server-side.
|
||||
ahoy.configure({
|
||||
cookies: false
|
||||
cookies: false,
|
||||
trackVisits: false
|
||||
});
|
||||
|
||||
// Start BaseApp for Page
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue