Skip to content

Commit

Permalink
Fix live reload issue
Browse files Browse the repository at this point in the history
-  Due to bug in webpack dev server. See webpack/webpack-dev-server#3271

JIRA: RAIL-3383
  • Loading branch information
lupko committed May 21, 2021
1 parent bd897ca commit 7381310
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/playground/webpack.config.js
Expand Up @@ -87,7 +87,7 @@ module.exports = async (env, argv) => {

return smp.wrap({
entry: ["./src/index.tsx"],
target: ["web", "es5"], // support IE11
target: "web", // support IE11
mode: isProduction ? "production" : "development",
plugins,
output: {
Expand Down Expand Up @@ -162,7 +162,7 @@ module.exports = async (env, argv) => {
compress: true,
port: 8999,
stats: "errors-only",
hot: true,
liveReload: true,
proxy,
},
stats: "errors-only",
Expand Down

0 comments on commit 7381310

Please sign in to comment.