2017-05-17 07:09:47 +00:00
|
|
|
/* eslint-disable */
|
2016-02-27 21:53:11 +00:00
|
|
|
var path = require('path');
|
|
|
|
var webpack = require('webpack');
|
2016-05-24 03:35:19 +00:00
|
|
|
var HtmlWebpackPlugin = require('html-webpack-plugin');
|
2017-09-12 06:32:26 +00:00
|
|
|
var ExtractTextPlugin = require('extract-text-webpack-plugin');
|
2018-05-12 21:42:10 +00:00
|
|
|
var UglifyJsPlugin = require('uglifyjs-webpack-plugin');
|
2018-01-22 06:24:10 +00:00
|
|
|
var ManifestPlugin = require('webpack-manifest-plugin');
|
2016-02-27 21:53:11 +00:00
|
|
|
|
2018-01-04 05:35:13 +00:00
|
|
|
commonWebpackConfig = require('./webpack.config');
|
2016-02-27 21:53:11 +00:00
|
|
|
|
|
|
|
productionWebpackConfig = Object.assign(commonWebpackConfig, {
|
|
|
|
cache: true,
|
2017-07-11 05:54:26 +00:00
|
|
|
devtool: 'source-map',
|
2017-10-26 05:49:04 +00:00
|
|
|
entry: ['babel-polyfill', 'babel-regenerator-runtime', './app/index'],
|
2016-02-27 21:53:11 +00:00
|
|
|
output: {
|
2018-01-04 05:38:02 +00:00
|
|
|
path: path.join(__dirname, 'dist'),
|
2016-05-24 03:35:19 +00:00
|
|
|
filename: 'bundle.[hash].js',
|
|
|
|
publicPath: '/static/',
|
2016-02-27 21:53:11 +00:00
|
|
|
},
|
2018-01-04 01:35:51 +00:00
|
|
|
stats: "normal"
|
2016-02-27 21:53:11 +00:00
|
|
|
});
|
2018-01-22 06:24:10 +00:00
|
|
|
productionWebpackConfig.plugins = [
|
|
|
|
...productionWebpackConfig.plugins,
|
|
|
|
new ManifestPlugin(),
|
2017-05-17 07:09:47 +00:00
|
|
|
new HtmlWebpackPlugin({
|
|
|
|
template: 'server/static/index.html',
|
2018-01-22 06:24:10 +00:00
|
|
|
}),
|
|
|
|
new ExtractTextPlugin({ filename: 'styles.[hash].css' }),
|
2018-05-12 21:42:10 +00:00
|
|
|
new UglifyJsPlugin({
|
2018-01-04 00:58:34 +00:00
|
|
|
sourceMap: true,
|
2018-05-12 21:42:10 +00:00
|
|
|
uglifyOptions: {
|
|
|
|
compress: true
|
|
|
|
}
|
2018-01-22 06:24:10 +00:00
|
|
|
}),
|
2017-07-11 03:10:54 +00:00
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.env': {
|
2017-11-12 23:02:23 +00:00
|
|
|
URL: JSON.stringify(process.env.URL),
|
2017-07-11 03:10:54 +00:00
|
|
|
NODE_ENV: JSON.stringify('production'),
|
2017-11-09 08:17:55 +00:00
|
|
|
GOOGLE_ANALYTICS_ID: JSON.stringify(process.env.GOOGLE_ANALYTICS_ID),
|
2018-11-04 03:27:57 +00:00
|
|
|
SUBDOMAINS_ENABLED: JSON.stringify(process.env.SUBDOMAINS_ENABLED)
|
2017-07-11 03:10:54 +00:00
|
|
|
},
|
2018-01-22 06:24:10 +00:00
|
|
|
}),
|
|
|
|
];
|
2016-02-27 21:53:11 +00:00
|
|
|
|
|
|
|
module.exports = productionWebpackConfig;
|