diff --git a/components/Header.js b/components/Header.js index aa5ba82f4..0899ccdd2 100644 --- a/components/Header.js +++ b/components/Header.js @@ -11,7 +11,7 @@ const NavBar = () => { const links = [ { id: 0, name: locale.NAV.INDEX, to: BLOG.path || '/', show: true }, { id: 1, name: locale.NAV.ABOUT, to: '/about', show: BLOG.showAbout }, - { id: 2, name: locale.NAV.RSS, to: '/feed', show: true }, + { id: 2, name: locale.NAV.RSS, to: '/feed', show: true, external: true }, { id: 3, name: locale.NAV.SEARCH, to: '/search', show: true } ] return ( @@ -24,7 +24,7 @@ const NavBar = () => { key={link.id} className="block ml-4 text-black dark:text-gray-50 nav" > - {link.name} + {link.name} ) )}