-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
75ea9f1
commit 2dc04d7
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |