If you are not using <RouterProvider>
please see Adopting Route Modules from Component Routes instead.
The React Router vite plugin adds framework features to React Router. This document wil help you adopt the plugin in your app if you'd like.
The Vite plugin adds:
The initial setup will likely be a bit of a pain, but once complete, adopting the new features is incremental, you can do one route at a time.
First install the React Router vite plugin:
npm install -D @react-router/dev
Then swap out the React plugin for React Router.
-import react from '@vitejs/plugin-react'
+import { reactRouter } from "@react-router/dev/vite";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [
- react()
+ reactRouter()
],
});
In a typical Vite app, the index.html
file is the entry point for bundling. The React Router Vite plugin uses root.tsx
. This let's you use React to render the shell instead of static HTML.
If your current index.html
looks like this:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>My App</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
You would move that markup into src/root.tsx
and delete index.html
:
import {
Scripts,
Outlet,
ScrollRestoration,
} from "react-router";
export default function Root() {
return (
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>My App</title>
</head>
<body>
<Outlet />
<ScrollRestoration />
<Scripts />
</body>
</html>
);
}
In the typical Vite app setup the index.html
file points to src/main.tsx
as the client entry point. React Router uses a file named src/entry.client.tsx
.
If your current src/main.tsx
looks like this:
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
createBrowserRouter,
RouterProvider,
} from "react-router-dom";
const router = createBrowserRouter(YOUR_ROUTES);
ReactDOM.createRoot(document.getElementById("root")).render(
<RouterProvider router={router} />
);
You would rename it to entry.client.tsx
and change it to this:
import * as React from "react";
import * as ReactDOM from "react-dom";
import { HydratedRouter } from "react-router-dom";
ReactDOM.hydrateRoot(
document,
<StrictMode>
<HydratedRouter routes={YOUR_ROUTES} />
</StrictMode>
);
hydrateRoot
instead of createRoot
<HydratedRouter>
instead of <RouterProvider>
<HydratedRouter>
Between root.tsx
and entry.client.tsx
, you may want to shuffle some stuff around between them.
In general:
root.tsx
contains any rendering things like context providers, layouts, styles, etc.entry.client.tsx
should be as minimal as possibleNote that your root.tsx
file will be statically generated and served as the entry point of your app, so just that module will need to be compatible with server rendering. This is where most of your trouble will come.
At this point you should be able to to boot the app.
npm react-router vite:dev
If you're having trouble
routes
prop to <HydratedRouter>
to isolate the problem to the new entry pointsMake sure you can boot your app at this point before moving on.
You can now incrementally migrate your routes to route modules. First create a routes.ts
file that exports your routes.
Given an existing route like this:
// ...
import Page from "./containers/page";
ReactDOM.hydrateRoot(
document,
<StrictMode>
<HydratedRouter
routes={[
// ...
{
path: "/pages/:id",
element: <Page />,
},
]}
/>
</StrictMode>
);
You can move the definition to a routes.ts
file:
import { type RouteConfig } from "@react-router/dev/routes";
export const routes: RouteConfig = [
{
path: "/pages/:id",
file: "./containers/page.tsx",
},
];
And then edit the route module to use the Route Module API:
import { useLoaderData } from "react-router";
export async function clientLoader({ params }) {
let page = await getPage(params.id);
return page;
}
export default function Component() {
let data = useLoaderData();
return <h1>{data.title}</h1>;
}
You'll now get inferred type safety with params, loader data, and more.
The first few routes you migrate are the hardest because you often have to access the same abstractions a bit differently than before (like in a loader instead of from a hook or context). But once the trickiest bits get dealt with, you get into an incremental groove.
If you want to enable server rendering and static pre-rendering, you can do so with the ssr
and prerender
options in the bundler plugin. For SSR you'll need to also deploy the server build to a server. See Deploying for more information.
import { reactRouter } from "@react-router/dev/vite";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [
reactRouter({
ssr: true,
async prerender() {
return ["/", "/pages/about"];
},
}),
],
});