react-helmet 사용이유 안쓰는 이

2025. 4. 10. 15:39개발/토막난 상식

반응형

그냥 index.html 에 적으면 된다고 생각했지만 



  • 앱 전체에서 동일한 <title>, <meta> 등을 쓸 경우
  • 단일 페이지 앱에서 SEO가 중요하지 않거나, CSR(Client-Side Rendering)만 사용하는 경우

에는 상관이 없었지만 

 

 

동적인 페이지 제목이나 메타 정보가 필요할 경우

<Helmet>
  <title>{post.title} | My App</title>
  <meta name="description" content={post.summary} />
</Helmet>
이런식으로 작성 가능 


 

19부터는 필요 없음

https://github.com/staylor/react-helmet-async/issues/244

 

react 19 · Issue #244 · staylor/react-helmet-async

PLEASE UPDATE TO SUPPORT REACT 19 IM BEGGING U 👍

github.com

 

 

 

하지만 

반응형