Simplify docker configs

This commit is contained in:
Aarni Halinen
2018-08-09 00:24:18 +03:00
parent 951486a6b0
commit 87e7bb8a90
3 changed files with 10 additions and 19 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ module.exports = merge(commonConfig, {
mode: "development",
entry: [
"react-hot-loader/patch", // Activate HMR for React
"webpack-dev-server/client?http://localhost:8080", // Bundle the client for webpack-dev-server and connect to the provided endpoint
"webpack-dev-server/client?http://0.0.0.0:8080", // Bundle the client for webpack-dev-server and connect to the provided endpoint
"webpack/hot/only-dev-server", // Bundle the client for hot reloading, only- means to only hot reload for successful updates
"./index.tsx" // The entry point of our app
],