UNPKG

milnode

Version:

Vue.js Component Framework, build on top of vuetify

18 lines (16 loc) 356 B
const TerserPlugin = require('terser-webpack-plugin') const webpack = require('webpack') module.exports = { configureWebpack: { plugins: [ new webpack.ContextReplacementPlugin(/moment[/\\]locale$/, /en|fr/) ], optimization: { minimizer: [ new TerserPlugin({ extractComments: true }) ] } } }