mytart 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -113,6 +113,7 @@ var GoogleAnalyticsProvider = class extends BaseProvider {
|
|
|
113
113
|
window.gtag = function gtag(...args) {
|
|
114
114
|
window.dataLayer.push(args);
|
|
115
115
|
};
|
|
116
|
+
window.gtag("js", /* @__PURE__ */ new Date());
|
|
116
117
|
window.gtag("config", this.config.measurementId, {
|
|
117
118
|
send_page_view: false
|
|
118
119
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -70,6 +70,7 @@ var GoogleAnalyticsProvider = class extends BaseProvider {
|
|
|
70
70
|
window.gtag = function gtag(...args) {
|
|
71
71
|
window.dataLayer.push(args);
|
|
72
72
|
};
|
|
73
|
+
window.gtag("js", /* @__PURE__ */ new Date());
|
|
73
74
|
window.gtag("config", this.config.measurementId, {
|
|
74
75
|
send_page_view: false
|
|
75
76
|
});
|