From 0ed31d29221a199324c3e0633966d516c894d5d9 Mon Sep 17 00:00:00 2001 From: Junglei Kim <67102441+imjlk@users.noreply.github.com> Date: Sat, 3 Aug 2024 16:56:24 +0900 Subject: [PATCH] fix: improve SEO --- website/next.config.js | 2 +- website/theme.config.tsx | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/website/next.config.js b/website/next.config.js index a4503d740a..acd0559afb 100644 --- a/website/next.config.js +++ b/website/next.config.js @@ -7,7 +7,7 @@ const withNextra = require("nextra")({ const config = { ...withNextra(), output: "export", - exportTrailingSlash: true, + trailingSlash: true, images: { unoptimized: true, }, diff --git a/website/theme.config.tsx b/website/theme.config.tsx index 836d25ee46..8e616206d8 100644 --- a/website/theme.config.tsx +++ b/website/theme.config.tsx @@ -50,6 +50,7 @@ const config: DocsThemeConfig = { return { defaultTitle: "Typia Guide Documents", titleTemplate: "Typia Guide Documents - %s", + description: "Superfast Runtime Validator with only one line", additionalLinkTags: [ { rel: "apple-touch-icon", @@ -115,6 +116,7 @@ const config: DocsThemeConfig = { ], }; }, + head: (<>), }; export default config;