mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 17:25:50 +03:00
Disable webpack-dev-server auto reload
As per comment
This commit is contained in:
parent
e28180f3d5
commit
4e6f48df03
1 changed files with 6 additions and 0 deletions
|
@ -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,
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue