Issue
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?
Solution
You first need to run
pub global activate webdev
as mentioned in https://pub.dartlang.org/packages/webdev
Answered By – Günter Zöchbauer
Answer Checked By – Dawn Plyler (FlutterFixes Volunteer)