Minimum ReasonReact bundle size

bsb
reasonreact

#1

I tried the Intro Example for ReasonReact, and the final index.js file in the bundleOutput folder is 134KB.

Is that the minimum one can get to?

Any other size optimizations recommended?


#2

Hi, is it the gzipped size?
Note the output js file is encouraged for read, if you find anything which can be removed, suggestions are welcome.
A normal workflow is compiling to es6 module output and ask rollup to shake the unused functions and minify it afterwards(google closure compiler)


#3

Got it. Thanks!