open-rmf / rmf-web

Apache License 2.0
83 stars 39 forks source link

dashboard: migrate to vite #977

Closed koonpeng closed 1 month ago

koonpeng commented 1 month ago

What's new

Switch the build system from webpack to vite. The current webpack build system is a left over from create-react-app (which is no longer maintained). With vite, I am seeing more than 2x improvement when building prod and "yes" improvement when starting up dev server (vite seems to do ondemand incremental compilation so it's hard to say how much, but the dashboard loads within a few secs).

The swap to vite also requires changing the test framework to vitest as jest does not play nice with esm modules.

Self-checks

Discussion