Files
eruda/script/webpack.release.js
2019-09-26 18:22:03 +08:00

24 lines
451 B
JavaScript

const webpack = require('webpack')
exports = require('./webpack.base')
exports.output.filename = 'eruda.js'
exports.devtool = 'source-map'
exports.plugins = exports.plugins.concat([
new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
compress: {
warnings: false
},
output: {
ascii_only: true
},
comments: /eruda v/
}),
new webpack.DefinePlugin({
ENV: '"production"'
})
])
module.exports = exports