From 9acfc70d6b264ba9eac903199dc07f670433270a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Fri, 28 Mar 2025 11:41:20 +0100 Subject: [PATCH] get rid of some docusaurus warnings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fredrik Adelöw --- microsite/blog/2022-10-28-backstagecon-kubecon-2022.mdx | 2 ++ microsite/docusaurus.config.ts | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/microsite/blog/2022-10-28-backstagecon-kubecon-2022.mdx b/microsite/blog/2022-10-28-backstagecon-kubecon-2022.mdx index ffc44ed432..92bdbafe05 100644 --- a/microsite/blog/2022-10-28-backstagecon-kubecon-2022.mdx +++ b/microsite/blog/2022-10-28-backstagecon-kubecon-2022.mdx @@ -11,6 +11,8 @@ authorURL: https://www.linkedin.com/in/emmamckeewhite/ What an action-packed and memorable week for the Backstage community meeting up IRL at KubeCon North America 2022 in (unseasonably warm and sunny) Detroit. Let’s see what the community was up to: +{/* truncate */} + ### BackstageCon: A full day of nothing but Backstage ![BackstageCon group](assets/2022-10-28/groupimage.jpg) diff --git a/microsite/docusaurus.config.ts b/microsite/docusaurus.config.ts index 87aa68d633..7be8d2187e 100644 --- a/microsite/docusaurus.config.ts +++ b/microsite/docusaurus.config.ts @@ -123,6 +123,11 @@ const config: Config = { }, blog: { path: 'blog', + // Gets rid of the following: + // Warning: Some blog authors used in "2024-12-18-backstage-wrapped-2024.mdx" are not defined in "authors.yml": + // - {"name":"Patrik Oldsberg, Spotify & Ben Lambert, Spotify","key":null,"page":null} + // Note that we recommend to declare authors once in a "authors.yml" file and reference them by key in blog posts front matter to avoid author info duplication. + onInlineAuthors: 'ignore', }, theme: { customCss: 'src/theme/customTheme.scss',