The code currently inlines the static assets that it uses into the binary. This is doubtlessly convenient for deployment but makes changes to them hard as every change has to pull the asset out, convert it from JSX syntax to e.g. SVG, do the change and inline again. This makes any change to the assets very tedious.
An alternative to save on this effort could be to use ppx_inline or similar solutions to inline the assets at build-time.
The code currently inlines the static assets that it uses into the binary. This is doubtlessly convenient for deployment but makes changes to them hard as every change has to pull the asset out, convert it from JSX syntax to e.g. SVG, do the change and inline again. This makes any change to the assets very tedious.
An alternative to save on this effort could be to use
ppx_inlineor similar solutions to inline the assets at build-time.