How to configure Bundle Analyzer in Angular?

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ธ.ค. 2024

ความคิดเห็น • 5

  • @SoulPvPGangstar
    @SoulPvPGangstar 5 หลายเดือนก่อน

    still working for angular 18? Since i only see the error:
    Could't analyze webpack bundle:
    TypeError: Cannot read properties of undefined (reading 'filter')

  • @mumtazgrc
    @mumtazgrc 4 หลายเดือนก่อน

    not working in angular 17

  • @Isildur16
    @Isildur16 11 หลายเดือนก่อน +1

    Is there any way to do this without the custom webpack?

    • @ng-tips
      @ng-tips  10 หลายเดือนก่อน +1

      If we only need to visualize the project dependencies and its sizes, then there is no need for a custom webpack file. However, if we need to work on minimizing the bundle size, then we must have a custom webpack file.
      Another option would be to look for tree shakeable libraries, which will only add the relevant code in your project.

    • @Isildur16
      @Isildur16 10 หลายเดือนก่อน

      @@ng-tips What if there are multiple apps in your project. How can you completely block moment from app B if only app A uses it. Would you still have to do the custom webpack?