blob: 1f46247eeaab34c963bc645812f34c74a5006886 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import * as webpack from 'webpack';
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) {
plugins.push(new webpack.optimize.UglifyJsPlugin());
}
return plugins;
};
|