regexper-static/webpack.prod.js
2018-02-10 16:08:42 -05:00

16 lines
390 B
JavaScript

const merge = require('webpack-merge');
const common = require('./webpack.common.js');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const WorkboxPlugin = require('workbox-webpack-plugin');
module.exports = merge(common, {
devtool: 'source-map',
plugins: [
new UglifyJSPlugin(),
new WorkboxPlugin({
clientsClaim: true,
skipWaiting: true
})
]
});