mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2024-11-25 06:07:34 +00:00
feat(ga): use nuxt module instead
This commit is contained in:
parent
ec7ea1a63e
commit
3fa8c9b9bd
@ -20,9 +20,14 @@ module.exports = {
|
||||
: "http://localhost:3000"
|
||||
},
|
||||
css: ["normalize.css/normalize.css"],
|
||||
plugins: [
|
||||
{ src: "@/plugins/ga.js", ssr: false },
|
||||
{ src: "@/plugins/global.js" }
|
||||
plugins: [{ src: "@/plugins/global.js" }],
|
||||
modules: [
|
||||
[
|
||||
"@nuxtjs/google-analytics",
|
||||
{
|
||||
id: "UA-125493236-1"
|
||||
}
|
||||
]
|
||||
],
|
||||
build: {
|
||||
extend(config, { isDev, isClient }) {
|
||||
|
13
package-lock.json
generated
13
package-lock.json
generated
@ -151,6 +151,14 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"@nuxtjs/google-analytics": {
|
||||
"version": "2.0.2",
|
||||
"resolved": "https://registry.npmjs.org/@nuxtjs/google-analytics/-/google-analytics-2.0.2.tgz",
|
||||
"integrity": "sha512-NpDQI7w4jr93Ukh98n3d0BRDHhX7cDUi3W2E0CAU6t5wmC+Q6cwQMqcEl32tGJBQlPZYWSrBKIM0A413HpL3TA==",
|
||||
"requires": {
|
||||
"vue-analytics": "5.16.0"
|
||||
}
|
||||
},
|
||||
"@nuxtjs/youch": {
|
||||
"version": "4.2.3",
|
||||
"resolved": "https://registry.npmjs.org/@nuxtjs/youch/-/youch-4.2.3.tgz",
|
||||
@ -11147,6 +11155,11 @@
|
||||
"resolved": "https://registry.npmjs.org/vue/-/vue-2.5.17.tgz",
|
||||
"integrity": "sha512-mFbcWoDIJi0w0Za4emyLiW72Jae0yjANHbCVquMKijcavBGypqlF7zHRgMa5k4sesdv7hv2rB4JPdZfR+TPfhQ=="
|
||||
},
|
||||
"vue-analytics": {
|
||||
"version": "5.16.0",
|
||||
"resolved": "https://registry.npmjs.org/vue-analytics/-/vue-analytics-5.16.0.tgz",
|
||||
"integrity": "sha512-WOdI1Ot/Tq3xHIIu3a5hiLawMrQeHsgqwcvHdZb5CNV4IM3RWZ3rw1gCnsAGbSWGPQw88mjkY9wuG5CXmfsssA=="
|
||||
},
|
||||
"vue-eslint-parser": {
|
||||
"version": "2.0.3",
|
||||
"resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-2.0.3.tgz",
|
||||
|
@ -13,6 +13,7 @@
|
||||
"precommit": "npm run lint"
|
||||
},
|
||||
"dependencies": {
|
||||
"@nuxtjs/google-analytics": "^2.0.2",
|
||||
"lodash": "^4.17.10",
|
||||
"normalize.css": "^8.0.0",
|
||||
"nuxt": "^1.0.0"
|
||||
|
@ -1,44 +0,0 @@
|
||||
/* eslint-disable */
|
||||
|
||||
export default ({ app }) => {
|
||||
/*
|
||||
** Only run on client-side and only in production mode
|
||||
*/
|
||||
if (process.env.NODE_ENV !== "production") return;
|
||||
/*
|
||||
** Include Google Analytics Script
|
||||
*/
|
||||
(function(i, s, o, g, r, a, m) {
|
||||
i["GoogleAnalyticsObject"] = r;
|
||||
(i[r] =
|
||||
i[r] ||
|
||||
function() {
|
||||
(i[r].q = i[r].q || []).push(arguments);
|
||||
}),
|
||||
(i[r].l = 1 * new Date());
|
||||
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
|
||||
a.async = 1;
|
||||
a.src = g;
|
||||
m.parentNode.insertBefore(a, m);
|
||||
})(
|
||||
window,
|
||||
document,
|
||||
"script",
|
||||
"https://www.google-analytics.com/analytics.js",
|
||||
"ga"
|
||||
);
|
||||
/*
|
||||
** Set the current page
|
||||
*/
|
||||
ga("create", "UA-125493236-1", "auto");
|
||||
/*
|
||||
** Every time the route changes (fired on initialization too)
|
||||
*/
|
||||
app.router.afterEach((to, from) => {
|
||||
/*
|
||||
** We tell Google Analytics to add a `pageview`
|
||||
*/
|
||||
ga("set", "page", to.fullPath);
|
||||
ga("send", "pageview");
|
||||
});
|
||||
};
|
Loading…
Reference in New Issue
Block a user