Fall in IT.

Create-react-app에서 Moment.js Locale이 적용되지 않는 문제 본문

프레임워크/React

Create-react-app에서 Moment.js Locale이 적용되지 않는 문제

D.Y 2020. 3. 14. 18:47

CRA(create-react-app)을 사용한 프로젝트에서 Moment.js 모듈을 사용할때

Locale이 적용되지 않는 문제가 있습니다.

 

그 이유는, create-react-app에는 moment locale 설정이 추가되어 있지 않다고 합니다.

자세한 내용은 링크를 참조해주세요 : )

 

Moment.js의 locale 을 적용하기 위해서는 직접 import 해주면 됩니다.

import moment from "moment";
import "moment/locale/ko";

moment.locale("ko");

 

참조

https://stackoverflow.com/questions/49788259/moment-js-change-locale-not-working

Comments