Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions apps/site/next.dynamic.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,10 @@ const getDynamicRouter = async () => {
? `${siteConfig.title} — ${data.title}`
: siteConfig.title;

pageMetadata.description = data.description
? data.description
: siteConfig.description;

// Default Twitter Title for the page
pageMetadata.twitter.title = pageMetadata.title;

Expand Down
1 change: 1 addition & 0 deletions apps/site/pages/en/eol.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: End-Of-Life
layout: article
description: Understand Node.js End-of-Life, what it means for security, tooling, and compliance, plus EOL version details and commercial support options.
---

# End-Of-Life (EOL)
Expand Down
1 change: 1 addition & 0 deletions apps/site/types/frontmatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ export type Frontmatter = {
author?: string;
authors?: string;
category?: string;
description?: string;
};
Loading