2017-05-17 00:36:42 +09:00
|
|
|
import * as webpack from 'webpack';
|
2017-05-17 00:00:56 +09:00
|
|
|
const StringReplacePlugin = require('string-replace-webpack-plugin');
|
|
|
|
|
|
|
|
import constant from './const';
|
|
|
|
|
|
|
|
const env = process.env.NODE_ENV;
|
|
|
|
const isProduction = env === 'production';
|
|
|
|
|
|
|
|
export default () => {
|
|
|
|
const plugins = [
|
|
|
|
constant(),
|
|
|
|
new StringReplacePlugin()
|
|
|
|
];
|
|
|
|
|
|
|
|
if (isProduction) {
|
2017-05-17 00:36:42 +09:00
|
|
|
plugins.push(new webpack.optimize.UglifyJsPlugin());
|
2017-05-17 00:00:56 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
return plugins;
|
|
|
|
};
|