File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -49,10 +49,15 @@ module.exports = {
49
49
// We ship a few polyfills by default.
50
50
require . resolve ( './polyfills' ) ,
51
51
// Finally, this is your app's code:
52
- path . join ( paths . appSrc , 'index' )
52
+ path . join ( paths . appSrc , 'index' ) ,
53
53
// We include the app code last so that if there is a runtime error during
54
54
// initialization, it doesn't blow up the WebpackDevServer client, and
55
55
// changing JS code would still trigger a refresh.
56
+
57
+ // Not sure if this is the correct place for this, or what the documentation would need
58
+ // however, this fixes the reload issue. Also not sure what it might break, so I welcome
59
+ // feedback if this is a useful update
60
+ path . join ( paths . appHtml )
56
61
] ,
57
62
output : {
58
63
// Next line is not used in dev but WebpackDevServer crashes without it:
You can’t perform that action at this time.
0 commit comments