joyent-portal/frontend/webpack/production.js

25 lines
604 B
JavaScript
Raw Normal View History

const plugins = require('./plugins');
const base = require('./base');
2016-10-20 04:14:26 +03:00
module.exports = Object.assign(base, {
devtool: 'hidden-source-map',
2016-10-20 04:14:26 +03:00
entry: [
'./index.js'
],
plugins: base.plugins.concat([
plugins['named-modules']
// plugins['occurrence-order'],
// plugins['aggressive-merging'],
// plugins['uglify-js']
])
2016-10-20 04:14:26 +03:00
});
/*
* Maybe add in the future:
* - https://github.com/lettertwo/appcache-webpack-plugin
* - https://github.com/NekR/offline-plugin
* - https://github.com/goldhand/sw-precache-webpack-plugin
* - https://github.com/Klathmon/imagemin-webpack-plugin
*/