webdev serve missing output for .js.map files

Issue

When running webdev serve and attempting to debug an error. I do not see any dart source code or .js.map files in order to debug it.

What could be wrong? This is a fresh angulardart project using the latest Dart 2, and webdev 0.2.4

Solution

It’s way too hard to do this now. I just opened an issue on it. In the meantime, try this in build.yaml:

global_options:
  build_web_compilers|dart_source_cleanup:
    release_options:
      enabled: false
  build_web_compilers|dart2js_archive_extractor:
    release_options:
      filter_outputs: false

Answered By – Kevin Moore

Answer Checked By – Mildred Charles (FlutterFixes Admin)

Leave a Reply

Your email address will not be published. Required fields are marked *