Skip to content

Commit

Permalink
Merge pull request #7463 from vector-im/dbkr/disable_auto_reload
Browse files Browse the repository at this point in the history
Disable webpack-dev-server auto reload
  • Loading branch information
bwindels committed Oct 5, 2018
2 parents e28180f + 4e6f48d commit d4576dc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions webpack.config.js
Expand Up @@ -163,6 +163,12 @@ module.exports = {
// don't fill the console up with a mahoosive list of modules
chunks: false,
},

// hot mdule replacement doesn't work (I think we'd need react-hot-reload?)
// so webpack-dev-server reloads the page on every update which is quite
// tedious in Riot since that can take a while.
hot: false,
inline: false,
},
};

Expand Down

0 comments on commit d4576dc

Please sign in to comment.