Skip to content

Commit

Permalink
Disable counting
Browse files Browse the repository at this point in the history
  • Loading branch information
MrTimeey committed Mar 15, 2021
1 parent 5e1ae93 commit d8d7af5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import LanguageSwitch from "@/components/LanguageSwitch";
import i18n from '@/plugins/i18n'
// eslint-disable-next-line no-unused-vars
const countapi = require('countapi-js');
export default {
Expand All @@ -18,8 +19,8 @@ export default {
if (localStorage.locale) {
i18n.locale = localStorage.locale;
}
countapi.hit('sudoku.mrtimeey.de', 'total').then((result) => { console.log(result.value) });
countapi.event('totalSudokuVisits').then((result) => { console.log(result.value) });
/*countapi.hit('sudoku.mrtimeey.de', 'total').then((result) => { console.log(result.value) });
countapi.event('totalSudokuVisits').then((result) => { console.log(result.value) });*/
}
}
Expand Down

0 comments on commit d8d7af5

Please sign in to comment.