From 301c1e3d344d2e02348f9585b99116f982308366 Mon Sep 17 00:00:00 2001 From: Achim Rolle Date: Wed, 5 Jun 2024 08:45:31 +0200 Subject: [PATCH] docs: update remix --- radar/2023-02-23/remix.md | 2 -- radar/2024-06-01/remix.md | 12 ++++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 radar/2024-06-01/remix.md diff --git a/radar/2023-02-23/remix.md b/radar/2023-02-23/remix.md index f18aacc..ddd632b 100644 --- a/radar/2023-02-23/remix.md +++ b/radar/2023-02-23/remix.md @@ -4,5 +4,3 @@ ring: adopt quadrant: languages-and-frameworks tags: [coding, frontend] --- - -Updated to "adopt" diff --git a/radar/2024-06-01/remix.md b/radar/2024-06-01/remix.md new file mode 100644 index 0000000..e6d588b --- /dev/null +++ b/radar/2024-06-01/remix.md @@ -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 don’t 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.