You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we use moment.js library to process the time format or parser, we actually do not need to include the locales part. So we could use the below configuration to reduce bundle file size about 301kb.
plugins: [
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
//...
]
That's all.
The text was updated successfully, but these errors were encountered:
When we use moment.js library to process the time format or parser, we actually do not need to include the locales part. So we could use the below configuration to reduce bundle file size about 301kb.
That's all.
The text was updated successfully, but these errors were encountered: