I have a skeleton React app, and I can see console.log statements when I’m in the replit IDE, but I can’t see them when I access the webpage in a new tab. Is this expected? I need to access the app in a new tab in order to connect with MetaMask.
Thanks!
Include
console.log("hello")
in the
function App() { console.log("hello") return "hello"
That will not work since the function execution will stop before console.log is called.
console.log
Thanks for that @MattDESTROYER
Turns out I had some weird setting on my Chrome browser that was hiding the log messages. Thanks everyone.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.