We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff1ca7d commit fdb52f0Copy full SHA for fdb52f0
src/app/helpers/tag-manager.js
@@ -3,6 +3,24 @@ const tagManagerID = 'GTM-W6N7PB';
3
4
window.dataLayer ||= [];
5
6
+function gtag(...args) {
7
+ window.dataLayer.push(...args);
8
+}
9
+/* eslint-disable camelcase */
10
+gtag('consent', 'default', {
11
+ ad_storage: 'denied',
12
+ ad_user_data: 'denied',
13
+ ad_personalization: 'denied',
14
+ analytics_storage: 'denied',
15
+ functionality_storage: 'denied',
16
+ personalization_storage: 'denied',
17
+ security_storage: 'granted',
18
+ wait_for_update: 2000
19
+});
20
+gtag('set', 'ads_data_redaction', true);
21
+gtag('set', 'url_passthrough', false);
22
+/* eslint-enable camelcase */
23
+
24
window.oxDLF ||= [];
25
26
// eslint-disable-next-line max-params
0 commit comments