diff options
author | Vitaly Takmazov | 2018-03-02 13:04:34 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:52 +0300 |
commit | dfc34ed4c93247024090f1a9e4c78edc0bc990a2 (patch) | |
tree | cabe341dd76a8aac24289eeaf09477809274e7f3 /vnext/webpack.config.js | |
parent | f41a90e6a3fd3f3a9b73ac74950f25ebd8252e9c (diff) |
webpack-serve
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() - ] + } }; |