Files
lime/templates/html5/npm/webpack.prod.js
2019-04-15 13:59:18 -07:00

17 lines
425 B
JavaScript
Executable File

const webpack = require ('webpack');
const merge = require ('webpack-merge');
const UglifyJSPlugin = require ('uglifyjs-webpack-plugin');
const common = require ('./webpack.common.js');
module.exports = merge (common, {
mode: 'production',
devtool: "source-map",
plugins: [
new UglifyJSPlugin ({
sourceMap: true
}),
new webpack.DefinePlugin ({
'process.env.NODE_ENV': JSON.stringify ('production')
})
]
});