diff options
Diffstat (limited to 'vnext/webpack.config.js')
-rw-r--r-- | vnext/webpack.config.js | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js index 89366a2a..f64e5749 100644 --- a/vnext/webpack.config.js +++ b/vnext/webpack.config.js @@ -1,20 +1,13 @@ var webpack = require("webpack"); module.exports = { - devtool: 'eval', entry: { "vendor": ['react', 'react-dom', 'react-markdown', 'whatwg-fetch'], "app": [ 'file-loader?name=index.html!./src/views/index.html', __dirname + "/src/app.js", - __dirname + "/src/style/main.css", - 'webpack-dev-server/client?http://localhost:3000', - 'webpack/hot/only-dev-server' + __dirname + "/src/style/main.css" ] }, - output: { - path: __dirname + "/public", - filename: "[name].js" - }, module: { rules: [ { test: /\.css$/, loader: "style-loader!css-loader" }, |