Remix 2.2.0 ❤️ Vite
2023 年 10 月 31 日に Remix 2.2.0 がリリースされました。
https://remix.run/blog/remix-heart-vite
Remix はコンパイラではなく、Vite プラグインとして使えるようになりました。
tsx
import { unstable_vitePlugin as remix } from "@remix-run/dev";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [remix()],
});これにより Remix は Vite のエコシステムを利用できるようになりました。