This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
Files
carnetdejeu-crystal/config/webpack/production.js

12 lines
255 B
JavaScript
Raw Permalink Normal View History

2018-09-03 23:08:32 +02:00
const webpack = require('webpack');
const merge = require('webpack-merge');
const common = require('./common.js');
module.exports = merge(common, {
plugins: [
new webpack.optimize.UglifyJsPlugin({
compress: { warnings: false }
})
]
});