2

Yesterday when I was working on my project everything was fine, but today when I start project with npm start I can see only blank screen on chrome

blank screen

index.html

index.js

Network section

2 Answers2

3

On the screenshot of the HTML in the Network tab the syntax highlighting seems to stop after the <script...>-Tag for apis.google.com, maybe there is something wrong with the closing of that tag? VSCode also shows the "/> in red.

Johannes Spohr
  • 191
  • 1
  • 3
2

Like you can see in this post you must properly close script tag.

Even your IDE is complaining over it, and in last screenshot you can see that something is wrong after that script tag...

Community
  • 1
  • 1
jare25
  • 506
  • 1
  • 7
  • 17