From f3aef3df2ce6b21d9661ef0f9342633642fd9d5d Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 26 Nov 2024 15:37:43 -0800 Subject: [PATCH] feat: 404 tracking --- package-lock.json | 12 ++--- public/_redirects | 3 +- src/layouts/Layout.astro | 9 +++- src/pages/404.astro | 5 ++ src/pages/music/index.astro | 14 ++---- src/pages/music/this-month/index.astro | 4 +- src/utils/data/static/sitemapData.json | 68 +++++++++++++------------- src/utils/data/syndication.js | 7 ++- 8 files changed, 65 insertions(+), 57 deletions(-) diff --git a/package-lock.json b/package-lock.json index 402d6f5..31bc85d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6430,9 +6430,9 @@ } }, "node_modules/regex-recursion": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-4.2.1.tgz", - "integrity": "sha512-QHNZyZAeKdndD1G3bKAbBEKOSSK4KOHQrAJ01N1LJeb0SoH4DJIeFhp0uUpETgONifS4+P3sOgoA1dhzgrQvhA==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-4.3.0.tgz", + "integrity": "sha512-5LcLnizwjcQ2ALfOj95MjcatxyqF5RPySx9yT+PaXu3Gox2vyAtLDjHB8NTJLtMGkvyau6nI3CfpwFCjPUIs/A==", "license": "MIT", "dependencies": { "regex-utilities": "^2.3.0" @@ -7470,9 +7470,9 @@ "license": "0BSD" }, "node_modules/type-fest": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.28.1.tgz", - "integrity": "sha512-LO/+yb3mf46YqfUC7QkkoAlpa7CTYh//V1Xy9+NQ+pKqDqXIq0NTfPfQRwFfCt+if4Qkwb9gzZfsl6E5TkXZGw==", + "version": "4.29.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.29.0.tgz", + "integrity": "sha512-RPYt6dKyemXJe7I6oNstcH24myUGSReicxcHTvCLgzm4e0n8y05dGvcGB15/SoPRBmhlMthWQ9pvKyL81ko8nQ==", "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=16" diff --git a/public/_redirects b/public/_redirects index 88d765c..1e13263 100644 --- a/public/_redirects +++ b/public/_redirects @@ -81,4 +81,5 @@ /posts/2014/sublime-text-ctrl-tab-key-bindings/ /posts/2014/sublime-text-3-ctrl-tab-key-bindings/ 301 /posts/2022/simple-api-fetch-hooks-with-swr/ /posts/2022/simple-data-fetching-with-custom-react-hooks-and-swr/ 301 /posts/2023/drying-up-now-page-templates-eleventy/ /posts/2023/drying-up-now-page-templates-and-normalizing-data-in-eleventy/ 301 -/posts/2023/hacking-together-a-tweeklyfm-replacement.html /posts/2023/hacking-together-a-tweeklyfm-replacement/ 301 \ No newline at end of file +/posts/2023/hacking-together-a-tweeklyfm-replacement.html /posts/2023/hacking-together-a-tweeklyfm-replacement/ 301 +/posts/2024/setting-up-image-transforms-in-eleventy.html /posts/2024/setting-up-image-transforms-in-eleventy 301 \ No newline at end of file diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 37239b1..3e62195 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -96,7 +96,14 @@ const pageDescription = md(description); { isProduction && ( - + ) }