Hi,
I’ve integrated Handsontable into my Angular project, finding it quite valuable. However, I’ve encountered an issue with the bundle size, which sits at around 13 MB upon page load. Despite reviewing the documentation, I’ve struggled to trim down the bundle size. Could you provide an example or any guidance on how to achieve this?
Here is the my app module code for your reference
import { HotTableModule } from ‘@handsontable/angular’;
import Handsontable from ‘handsontable/base’;
import { registerCellType, NumericCellType } from ‘handsontable/cellTypes’;
import { registerPlugin, UndoRedo } from ‘handsontable/plugins’;
registerCellType(NumericCellType);
registerPlugin(UndoRedo);