Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
About
Description
1. og:image태그 경로 설정
검색 결과 stackoverflow - Open graph can resolve relative url?에서도 og:image의 경로는 상대경로가 아닌 절대경로로 해줘야한다고 한다.
blog-config.js에서 설정한 mainOgImage를 seo컴포넌트에 적용하기 위해 2,3번을 진행했다.
2. useStaticImage hooks
src/common/image
컴포넌트 내부에 있는static 폴더 내부에 원하는 이미지를 가져오는 query
를 useStaticImage hooks로 분리했다.사용 예시
3. blog-config 이미지 경로 수정
2번에서 image를 static 폴더에서 가져오기 위해 blog-config에서 이미지 경로를 다음과 같이 수정
cf> favicon
favicon: 'static/pencil.png'
의 경우gatsby-plugin-manifest
플러그인으로 렌더링해서 경로까지 적어줘야 한다.4. main-og-image 추가
아래 결과 참고
Result
메인페이지
포스트 페이지
Ref
#30
#29
#27
#15
17fdb75