user229487
user229487

Reputation: 1407

New angular dart project fails to start from IntelliJ

I created a new Angular Dart project from IntelliJ but when I try to run the project I get the following output:

/usr/local/opt/dart/libexec/bin/pub global run webdev serve web:61889
No active package webdev.
Dart Dev Server terminated

Is there something I still need to install?

Upvotes: 3

Views: 832

Answers (1)

Günter Zöchbauer
Günter Zöchbauer

Reputation: 658017

You first need to run

pub global activate webdev

as mentioned in https://pub.dartlang.org/packages/webdev

enter image description here

Upvotes: 2

Related Questions