You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
Benchmark compiling the frontend and backend in parallel.
Add an environment in wrangler.toml to compile only the front end. This requires disabling server-side rendering.
Additional Links & Resources
The text was updated successfully, but these errors were encountered:
We can also skip the custom CSS file when developing. We can reference the non-minified Tailwind CSS file. However, this file is quite large and shouldn't be used in production.
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
wrangler.toml
to compile only the front end. This requires disabling server-side rendering.Additional Links & Resources
The text was updated successfully, but these errors were encountered: