add owa tracking
This commit is contained in:
parent
c4e94de14f
commit
ad1118dd04
|
@ -68,7 +68,8 @@ module.exports = {
|
||||||
** Plugins to load before mounting the App
|
** Plugins to load before mounting the App
|
||||||
*/
|
*/
|
||||||
plugins: [
|
plugins: [
|
||||||
{ src: '~/plugins/Vuelidate' }
|
{ src: '~/plugins/Vuelidate' },
|
||||||
|
{ src: '~/plugins/owa.js', mode: 'client' }
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
/* eslint-disable */
|
||||||
|
|
||||||
|
export default ({ app }) => {
|
||||||
|
/*
|
||||||
|
* ** Only run on client-side and only in production mode
|
||||||
|
* */
|
||||||
|
if (process.env.NODE_ENV !== 'production') return
|
||||||
|
|
||||||
|
var owa_baseUrl = 'https://owa.isnet.uk/';
|
||||||
|
var owa_cmds = owa_cmds || [];
|
||||||
|
owa_cmds.push(['setSiteId', '0c3a9f11563be70da80f493a590b46d1']);
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
var _owa = document.createElement('script'); _owa.type = 'text/javascript'; _owa.async = true;
|
||||||
|
owa_baseUrl = ('https:' == document.location.protocol ? window.owa_baseSecUrl || owa_baseUrl.replace(/http:/, 'https:') : owa_baseUrl );
|
||||||
|
_owa.src = owa_baseUrl + 'modules/base/js/owa.tracker-combined-min.js';
|
||||||
|
var _owa_s = document.getElementsByTagName('script')[0]; _owa_s.parentNode.insertBefore(_owa, _owa_s);
|
||||||
|
}());
|
||||||
|
/*
|
||||||
|
* ** Every time the route changes (fired on initialization too)
|
||||||
|
* */
|
||||||
|
app.router.afterEach((to, from) => {
|
||||||
|
owa_cmds.push(['trackPageView']);
|
||||||
|
owa_cmds.push(['trackClicks']);
|
||||||
|
})
|
||||||
|
}
|
|
@ -4,7 +4,7 @@ services:
|
||||||
nuxt:
|
nuxt:
|
||||||
build: ./app/
|
build: ./app/
|
||||||
container_name: marcleopold-rayelliott.dev
|
container_name: marcleopold-rayelliott.dev
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- ${URL_INTERNAL}:3013:3013
|
- ${URL_INTERNAL}:3013:3013
|
||||||
environment:
|
environment:
|
||||||
|
|
Loading…
Reference in New Issue