From 3a2243ab01c547ce6a840525dc7bd5ec37c9896e Mon Sep 17 00:00:00 2001 From: Jon McClure Date: Wed, 11 Jan 2023 20:14:08 +0000 Subject: [PATCH] closes #45 --- .vscode/settings.json | 14 +- src/components/SEO/SEO.svelte | 12 +- src/components/SEO/analytics.js | 333 ------------------ src/components/SEO/analytics/chartbeat.js | 33 ++ src/components/SEO/analytics/ga.js | 40 +++ src/components/SEO/analytics/index.js | 3 + .../SEO/{ => analytics}/publisherTags.js | 0 7 files changed, 89 insertions(+), 346 deletions(-) delete mode 100644 src/components/SEO/analytics.js create mode 100644 src/components/SEO/analytics/chartbeat.js create mode 100644 src/components/SEO/analytics/ga.js create mode 100644 src/components/SEO/analytics/index.js rename src/components/SEO/{ => analytics}/publisherTags.js (100%) diff --git a/.vscode/settings.json b/.vscode/settings.json index 3c2a3e58..8bf25639 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,12 +1,7 @@ { - "i18n-ally.localesPaths": [ - "locales" - ], + "i18n-ally.localesPaths": ["locales"], "i18n-ally.keystyle": "nested", - "eslint.validate": [ - "javascript", - "svelte" - ], + "eslint.validate": ["javascript", "svelte"], "editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.fixAll.eslint": true @@ -16,5 +11,6 @@ }, "[mdx]": { "editor.wordWrap": "on" - } -} \ No newline at end of file + }, + "typescript.tsdk": "node_modules/typescript/lib" +} diff --git a/src/components/SEO/SEO.svelte b/src/components/SEO/SEO.svelte index de7134f5..9c9e49a5 100644 --- a/src/components/SEO/SEO.svelte +++ b/src/components/SEO/SEO.svelte @@ -1,7 +1,10 @@