diff options
Diffstat (limited to 'vnext/webpack.config.js')
-rw-r--r-- | vnext/webpack.config.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js index f64e5749..891a3e53 100644 --- a/vnext/webpack.config.js +++ b/vnext/webpack.config.js @@ -1,4 +1,3 @@ -var webpack = require("webpack"); module.exports = { entry: { "vendor": ['react', 'react-dom', 'react-markdown', 'whatwg-fetch'], @@ -16,8 +15,5 @@ module.exports = { 'file-loader?hash=sha512&digest=hex&name=[hash].[ext]' ]} ] - }, - plugins: [ - new webpack.HotModuleReplacementPlugin() - ] + } }; |