Skip to content

Commit

Permalink
build(webpack): fix title
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveVanOpstal committed Nov 8, 2016
1 parent 7d3d6b9 commit 1d57fd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/build/webpack.client.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ module.exports = function(options) {
new CopyWebpackPlugin([{from: 'src/client/assets/images/favicon.ico', to: 'favicon.ico'}]),
new HtmlWebpackPlugin({
template: 'src/client/index.html',
title: 'Legend Builder' + options.dev ? ' [DEV]' : '',
title: 'Legend Builder' + (options.dev ? ' [DEV]' : ''),
chunksSortMode: 'dependency',
minify: options.dev ? false : {
collapseWhitespace: true,
Expand Down

0 comments on commit 1d57fd6

Please sign in to comment.