Skip to content

Commit

Permalink
fix: Disable chunk sorting in HtmlWebpackPlugin (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
grncdr authored and markdalgleish committed Feb 13, 2019
1 parent b1d0c4d commit 03e8dc1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/makeWebpackConfig.js
Expand Up @@ -103,7 +103,8 @@ module.exports = async (playroomConfig, options) => {
new HtmlWebpackPlugin({
title: playroomConfig.title
? `Playroom | ${playroomConfig.title}`
: 'Playroom'
: 'Playroom',
chunksSortMode: 'none'
}),
...(options.production ? [] : [new FriendlyErrorsWebpackPlugin()])
],
Expand Down

0 comments on commit 03e8dc1

Please sign in to comment.