npm install --save-dev moment-locales-webpack-plugin
// webpack.config.js
const MomentLocalesPlugin = require(‘moment-locales-webpack-plugin‘);
module.exports = {
plugins: [
// To strip all locales except “en”
new MomentLocalesPlugin(),
// Or: To strip all locales except “en”, “es-us” and “ru”
// (“en” is built into Moment and can’t be removed)
new MomentLocalesPlugin({
localesToKeep: [‘es-us‘, ‘ru‘],
}),
],
};
使用webpack + momentjs时, 需要注意的问题
原文:https://www.cnblogs.com/zlog/p/11941820.html