From 7058991225e8b391531b2ae4d89d9edd8b890d50 Mon Sep 17 00:00:00 2001 From: rcarteraz Date: Tue, 13 Aug 2024 15:14:04 -0500 Subject: [PATCH] Fix Blog Description (#1369) * please work * remove dupe --- docusaurus.config.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index edfb85f5..ed3e59e8 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -33,9 +33,6 @@ const config = { { label: "Blog", to: "blog", - blogTitle: "Meshtastic Blog", - blogDescription: - "Discover in-depth insights from developers and maintainers, including project updates and changes. Hear from the community about their projects and ideas.", }, { label: "Docs", @@ -133,6 +130,11 @@ const config = { showLastUpdateAuthor: true, remarkPlugins: [remarkDefList], }, + blog: { + blogTitle: "Meshtastic Blog", + blogDescription: + "Discover in-depth insights from developers and maintainers, including project updates and changes. Hear from the community about their projects and ideas.", + }, theme: { customCss: require.resolve("./src/css/custom.css"), },