DEV Community

Discussion on: Optimizing moment-timezone using webpack

Collapse
 
achimoraites profile image
Achilles Moraites • Edited

I assume you would like to know the list of timezones the moment-timezone has by default ?

// To get a list of all available time zone names, use moment.tz.names.
moment.tz.names(); // ["Africa/Abidjan", "Africa/Accra", "Africa/Addis_Ababa", ...]
Enter fullscreen mode Exit fullscreen mode

momentjs.com/timezone/docs/#/data-...

Or what timezones are actually being left after the MomentTimezoneDataPlugin Webpack plugin ?

Collapse
 
dendihandian profile image
Dendi Handian

The first solution is fine. Thanks