Summary
Right now, we rebuild both the front end and back end for every change, adding latency to the dev loop. Disabling server-side rendering and only building the front end when doing UI work may be beneficial. This only works when not adding or changing the server-side functions.
Alternatively, we could build the front end and back end in parallel. Right now, they're built sequentially.
Completion Criteria
Additional Links & Resources