You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the next branch of the boilerplate, I get no error display on the page when I add a syntax error to my component (although the error does show up in the console). When using the master branch, I do not have this issue. Was error reporting removed when switching to the next branch or is the branch not ready for use yet? Or am I just doing something wrong?
Steps to reproduce:
Go to the next branch, click the Clone or download button, and then click Download ZIP.
After unzipping the contents, run npm install, and then npm start.
Go to the Counter.js file and change <h2>Counter: {this.state.counter}</h2> to <h2Counter: {this.state.counter}</h2>
As you can see, the error shows up in the console but there is no feedback on the page itself:
When using the boilerplate from the master branch, I DO get feedback:
Please let me know if I can provide any more information. Thanks very much.
The text was updated successfully, but these errors were encountered:
It looks like I just needed to add overlay: true to the devServer options in webpack.config.js. Should this be in there by default? If not, feel free to close this.
When using the
next
branch of the boilerplate, I get no error display on the page when I add a syntax error to my component (although the error does show up in the console). When using themaster
branch, I do not have this issue. Was error reporting removed when switching to thenext
branch or is the branch not ready for use yet? Or am I just doing something wrong?Steps to reproduce:
next
branch, click the Clone or download button, and then click Download ZIP.npm install
, and thennpm start
.Counter.js
file and change<h2>Counter: {this.state.counter}</h2>
to<h2Counter: {this.state.counter}</h2>
As you can see, the error shows up in the console but there is no feedback on the page itself:
When using the boilerplate from the
master
branch, I DO get feedback:Please let me know if I can provide any more information. Thanks very much.
The text was updated successfully, but these errors were encountered: