Skip to content

Commit

Permalink
actually fixes server-side rendering of SectionTitle
Browse files Browse the repository at this point in the history
  • Loading branch information
davelandry committed Mar 1, 2017
1 parent f4b66f0 commit a2500ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack/webpack.config.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ module.exports = [
},
plugins: [
new ExtractTextPlugin("styles.css", {allChunks: true}),
new webpack.optimize.UglifyJsPlugin({compressor: {warnings: false}}),
new webpack.optimize.UglifyJsPlugin({compressor: {warnings: false}, mangle: false}),
new webpack.DefinePlugin({__DEVCLIENT__: false, __DEVSERVER__: false}),
new InlineEnviromentVariablesPlugin({NODE_ENV: "production"})
],
Expand Down Expand Up @@ -94,7 +94,7 @@ module.exports = [
plugins: [
new webpack.optimize.OccurenceOrderPlugin(),
new ExtractTextPlugin("styles.css", {allChunks: true}),
new webpack.optimize.UglifyJsPlugin({compressor: {warnings: false}}),
new webpack.optimize.UglifyJsPlugin({compressor: {warnings: false}, mangle: false}),
new webpack.DefinePlugin({__DEVCLIENT__: false, __DEVSERVER__: false}),
new webpack.IgnorePlugin(/vertx/),
new InlineEnviromentVariablesPlugin({NODE_ENV: "production"})
Expand Down

0 comments on commit a2500ce

Please sign in to comment.