mirror of
https://github.com/liriliri/eruda.git
synced 2026-02-18 10:37:48 +08:00
19 lines
415 B
JavaScript
19 lines
415 B
JavaScript
var webpack = require('webpack');
|
|
|
|
exports = require('./webpack.base');
|
|
|
|
exports.output.filename = 'eruda.min.js';
|
|
exports.devtool = false;
|
|
exports.plugins = exports.plugins.concat([
|
|
new webpack.optimize.UglifyJsPlugin({
|
|
compress: {
|
|
warnings: false
|
|
},
|
|
comments: /eruda/
|
|
}),
|
|
new webpack.DefinePlugin({
|
|
ENV: '"production"',
|
|
})
|
|
]);
|
|
|
|
module.exports = exports; |