Currently, my web application project runs on a Flask backend within a virtual machine environment. I prefer using Sublime Text for coding, running Flask run
command in the terminal, and accessing pages on http://127.0.0.1:5000/
via a web browser. Whenever there's an issue with the Flask backend, error messages pop up.
The hierarchy of my folders is structured as follows:
app.py
/templates
index.html
/static
/css
/js
my_js.js
Being relatively new to Flask and JavaScript, I'm uncertain about how to view error messages for debugging the code within my_js.js
.