From 434d5bff71e14b877b920b031e02074e90fc1aa4 Mon Sep 17 00:00:00 2001 From: Wayne Sutton Date: Sat, 27 Dec 2025 16:14:52 -0800 Subject: [PATCH] disable newsletter admin on production --- content/blog/how-to-use-agentmail.md | 2 +- content/blog/how-to-use-firecrawl.md | 2 +- src/config/siteConfig.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/content/blog/how-to-use-agentmail.md b/content/blog/how-to-use-agentmail.md index 1a13362..3f01125 100644 --- a/content/blog/how-to-use-agentmail.md +++ b/content/blog/how-to-use-agentmail.md @@ -4,7 +4,7 @@ description: "Complete guide to setting up AgentMail for newsletters and contact date: "2025-12-27" slug: "how-to-use-agentmail" published: true -image: images/agentmail-blog.png +image: /images/agentmail-blog.png tags: ["agentmail", "newsletter", "email", "setup"] --- diff --git a/content/blog/how-to-use-firecrawl.md b/content/blog/how-to-use-firecrawl.md index f80e64f..7b7de69 100644 --- a/content/blog/how-to-use-firecrawl.md +++ b/content/blog/how-to-use-firecrawl.md @@ -4,7 +4,7 @@ description: "Import external articles as markdown posts using Firecrawl. Get yo date: "2025-12-20" slug: "how-to-use-firecrawl" published: true -image: images/firecrwall-blog.png +image: /images/firecrwall-blog.png tags: ["tutorial", "firecrawl", "import"] --- diff --git a/src/config/siteConfig.ts b/src/config/siteConfig.ts index 4056fa8..3261bce 100644 --- a/src/config/siteConfig.ts +++ b/src/config/siteConfig.ts @@ -537,7 +537,7 @@ Created by [Wayne](https://x.com/waynesutton) with Convex, Cursor, and Claude Op // Admin UI for managing subscribers and sending newsletters at /newsletter-admin // Hidden from nav by default (no auth - security through obscurity) newsletterAdmin: { - enabled: true, // Global toggle for admin UI + enabled: false, // Global toggle for admin UI showInNav: false, // Hide from navigation for security },