docs: update remix

This commit is contained in:
Achim Rolle
2024-06-05 08:45:31 +02:00
committed by Stefan Rotsch
parent 95fb6d162e
commit 301c1e3d34
2 changed files with 12 additions and 2 deletions

View File

@@ -4,5 +4,3 @@ ring: adopt
quadrant: languages-and-frameworks quadrant: languages-and-frameworks
tags: [coding, frontend] tags: [coding, frontend]
--- ---
Updated to "adopt"

12
radar/2024-06-01/remix.md Normal file
View File

@@ -0,0 +1,12 @@
---
title: "Remix"
ring: adopt
quadrant: languages-and-frameworks
tags: [coding, frontend]
---
With Remix v2.2.0 Remix itself is now just a Vite plugin. This gives us access to the entire ecosystem of Vite plugins and even more, for example:
- **Near-instant dev startup.** Vite lazily compiles your app code on-demand, so the dev server can boot immediately.
- **Pre-bundled dependencies.** Vite only processes dependencies once, so large libraries like Material UI and AntD dont become bottlenecks for rebuilds nor hot updates.
- **Incremental hot updates.** Vite keeps track of dependencies so it only needs to reprocess app code that depends on the changes.