Create-React-App with Moment JS: Cannot find module “./locale”

后端 未结 4 1866
天命终不由人
天命终不由人 2020-12-17 15:28

Just ran an npm update on my web application and now Moment JS appears to be failing with the following message:

Error: Cannot find mod         


        
4条回答
  •  失恋的感觉
    2020-12-17 15:47

    Application built with Create React App and using Moment 2.24.0, the following seems to be working fine:

    import moment from 'moment';
    import 'moment/min/locales';
    

    Instead of importing moment-with-locales directly. Alternatively, also possible to only import required locales:

    import moment from 'moment';
    import 'moment/locale/fr';
    import 'moment/locale/ru';
    

提交回复
热议问题