Hello.
I pulled Kendo down from npm however webpacking kendo.all.js results in a 3MB file so I would prefer to only pack the controls that my application is going to utilize. I found this link which shows all of the script dependencies so, the chart for example, I assume I could pack that up like:
const path = require('path');module.exports = { entry: './node_modules/@progress/kendo-ui/js/kendo.dataviz.chart.js', output: { filename: 'kendo.js', path: path.resolve(__dirname, 'wwwroot/js') }};
but what is the preferred approach to bundling multiple controls?
