chuckd
chuckd

Reputation: 14540

Can't debug Asp.Net Core 2.1 Angular app in Visual Studio 2019

I just installed VS 2019 and created a new ASP.NET Core 2.1 Angular project. Haven't done anything to it and I hit the debug button to start it up in Chrome.

I received this message after Chrome loads!

Receive a exception.

Here is what I see!

enter image description here

Upvotes: 1

Views: 331

Answers (1)

Vova Bilyachat
Vova Bilyachat

Reputation: 19494

Looks like that you haven't installed npm modules.

Please run npm install so it will install node modules.

Upvotes: 2

Related Questions