Skip to content

Commit

Permalink
Merge pull request #1306 from wdh2100/enhancement/webpack-config
Browse files Browse the repository at this point in the history
fix webpack config
  • Loading branch information
patorjk authored Jun 5, 2020
2 parents 4209312 + 7dfd8c1 commit 4089328
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
const path = require('path');
const webpack = require('webpack');

module.exports = {
entry: {
app: "./examples/Router/index.js"
},
stats: "verbose",
stats: 'verbose',
context: __dirname,
output: {
filename: 'bundle.js'
},
devtool: 'source-map',
devServer: {
disableHostCheck: true,
host: 'localhost',
hot: true,
inline: true,
host: "0.0.0.0",
port: 5050
port: 5050,
stats: 'errors-warnings'
},
module: {
rules: [
Expand Down

0 comments on commit 4089328

Please sign in to comment.