Like in the title, what are your tips for optimizing frontend/backend? Minimization of files, indexes on db, cache everywhere and ...? ;)
For further actions, you may consider blocking this person and/or reporting abuse
Like in the title, what are your tips for optimizing frontend/backend? Minimization of files, indexes on db, cache everywhere and ...? ;)
For further actions, you may consider blocking this person and/or reporting abuse
Mohssine Dardar -
Sujoy C. Das -
Sebastian Wessel -
David Asaolu -
Once suspended, meatboy will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, meatboy will be able to comment and publish posts again.
Once unpublished, all posts by meatboy will become hidden and only accessible to themselves.
If meatboy is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Meat Boy.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag meatboy:
Unflagging meatboy will restore default visibility to their posts.
Top comments (3)
Removing React
π
For Firebase, if you haven't updated to V9 already. Lazy import not commonly used packages for example realtime-database and shave 50-100kb off your bundle size. And upgrade to V9 already! π
For React specifically. When making requests, abandon useEffect+ fetch and install SWR. Saves you a ton of hassle both in DX and UX. Caches requests for you leaving a single hook acting as a global data store for that request. Also use optimistic updates with SWR mutate to update the UI before you've sent a request to change or create.