Fix Matomo and CI analytics plugins

This commit is contained in:
N-Pex 2025-05-12 12:39:04 +02:00
parent d4041ab9ab
commit 96ef4885d6
3 changed files with 83 additions and 92 deletions

View file

@ -20,13 +20,13 @@ export default {
switch (type) {
case "ci":
{
let engine = cleaninsights.install(Vue, engineConfig.config);
let engine = cleaninsights.install(app, engineConfig.config);
this.engines.push(engine);
}
break;
case "matomo":
{
let engine = matomo.install(Vue, engineConfig.config);
let engine = matomo.install(app, engineConfig.config);
this.engines.push(engine);
}
break;