0
votes

I'm using handsontable without formulas. However, hot-formula-parser is still included in a webpack build, since it's a dependency of handsontable. Is there a solid, non-hacky, way to get rid of this?

As can be seen it takes quite a bite of my total bundle size.

enter image description here

1

1 Answers

0
votes

Add following to your Webpack config:

{
    test: require.resolve('hot-formula-parser/dist/formula-parser.js'),
    use: 'ignore-loader'
}