November 07, 2020
Gatsby 블로그에 Google Analytics 플러그인 추가하는 법
Google Search Console에 Gatsby 블로그 등록하는 법
Gatsby 블로그에 RSS 추가하는 법
Gatsby 블로그에 advanced-sitemap 플러그인 추가하는 법
열심히 포스팅을 하는 것에 비해 성과가 좋지 않아 Gatsby SEO에 대해 검색하던 중 다음의 기사를 발견했다.
Advanced Sitemap Plugin for SEO
Rebuilding our docs site using Gatsby was a huge success. We saw major improvements to our SEO performance within two weeks of launching, and watched as our rankings improved and organic search visibility increased drastically over the following months. … This success can be attributed to having improved content and meta data, a lightning-fast website powered by Gatsby and Ghost, and from submitting our new advanced sitemap to the search engines.
기사에서 추정하는 SEO 성과 향상의 핵심 요인은 다음과 같다.
git bash에 npm 명령어 실행
npm install --save gatsby-plugin-advanced-sitemap
gatsby-config.js
에 아래 코드 추가
siteMetadata: {
siteUrl: `https://www.example.com`,
},
plugins: [
`gatsby-plugin-advanced-sitemap`
]
빌드 한 뒤 sitemap이 잘 형성되었는지 확인하기
gatsby build && gatsby serve
https://본인의 깃허브 주소/sitemap-pages.xml
로 접속하면 자신의 Advanced Sitemap을 확인할 수 있다.
Source