fix: untranslated headings in navigation #1012
Merged
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.
안녕하세요😊 아래 스크린샷과 같이 네비게이션 메뉴에 번역되지 않은 부분이 있어 수정하였습니다.
수정 전

수정 후

수정 내역은 아래와 같습니다.
⭐ 캐시 문제
yarn dev를 통한 로컬 서버에서는 수정 내역이 정상적으로 반영되었지만, vercel preview에서는 수정 내역이 정상적으로 반영되지 않았습니다.yarn dev를 통한 로컬 서버에서는node_modules/.cache디렉토리에서 캐싱된 파일들을 불러옵니다.rm -rf node_modules/.cache명령어를 통해 해당 디렉토리를 삭제한 후, 다시yarn dev를 실행하였을 때, 비로소 변경 사항이 정상적으로 반영되었습니다. (feat: missed script for yarn reset #1013 에 새로 등록한yarn reset명령어를 통해 실행하면, 정상 동작합니다!)Progress