[Chartjs]-Angular Chart.js โ€“ Remove Moment.js as Dependency / Reduce Bundle Size

2๐Ÿ‘

โœ…

You can import standalone version โ€“ not bundled one with the following line:

import Chart from 'chart.js/dist/Chart.js'

Or setting alias in web.config:

resolve: {
    alias: {
      'chart.js': 'chart.js/dist/Chart.js'
    }
}

Or
Install Angular ChartJS which does not have moment.js bundled:

https://github.com/emn178/angular2-chartjs

Leave a comment