From a3f43830682de4cb43b45cde2b8d6433f4d66f88 Mon Sep 17 00:00:00 2001 From: yongsk0066 Date: Sun, 21 Jul 2024 18:10:51 +0900 Subject: [PATCH] fix: redirect on confing --- astro.config.mjs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/astro.config.mjs b/astro.config.mjs index 684b7a3..9a73c75 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -13,6 +13,12 @@ import customTheme from './shiki/github-dark-default.json' // https://astro.build/config export default defineConfig({ + redirects:{ + "/rss.xml": { + status: 301, + destination:"https://yongseok.me/rss.xml" + } + }, i18n: { defaultLocale: 'ko', locales: ['ko', 'en'],