Add -npm option for HTML5
This commit is contained in:
17
templates/html5/npm/webpack.prod.js
Executable file
17
templates/html5/npm/webpack.prod.js
Executable file
@@ -0,0 +1,17 @@
|
||||
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')
|
||||
})
|
||||
]
|
||||
});
|
||||
Reference in New Issue
Block a user