You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Fix `defaultShouldRevalidate` value when using single fetch ([#10139](https://github.com/remix-run/remix/pull/10139))
300
-
- Update externally-accessed resource routes warning to cover null usage as well ([#10145](https://github.com/remix-run/remix/pull/10145))
309
+
-`@remix-run/react` - Fix `defaultShouldRevalidate` value when using Single Fetch ([#10139](https://github.com/remix-run/remix/pull/10139))
310
+
-`@remix-run/server-runtime` - Update externally-accessed resource routes warning to cover `null` usage as well ([#10145](https://github.com/remix-run/remix/pull/10145))
Copy file name to clipboardExpand all lines: docs/start/future-flags.md
+5-6
Original file line number
Diff line number
Diff line change
@@ -454,7 +454,7 @@ export async function loader({}: LoaderFunctionArgs) {
454
454
}
455
455
```
456
456
457
-
If you were using the second parameter of `json`/`defer` to set a custom status or headers on your response, you can continue doing do via the new `data` API:
457
+
If you were using the second parameter of `json`/`defer` to set a custom status or headers on your response, you can continue doing so via the new `data` API:
458
458
459
459
```diff
460
460
-import { json } from "@remix-run/node";
@@ -542,7 +542,7 @@ remix({
542
542
This package matches the API of React Router v7's `@react-router/dev/routes`, making the React Router v7 migration as easy as possible.
543
543
544
544
```shellscript nonumber
545
-
npm install --dev @remix-run/route-config
545
+
npm install -D @remix-run/route-config
546
546
```
547
547
548
548
This provides the core `RouteConfig` type as well as a set of helpers for configuring routes in code.
@@ -564,7 +564,7 @@ This is a good way to check that your new `routes.ts` file is being picked up su
564
564
👉 **Install `@remix-run/fs-routes` and use it in `routes.ts`**
565
565
566
566
```shellscript nonumber
567
-
npm install --dev @remix-run/fs-routes
567
+
npm install -D @remix-run/fs-routes
568
568
```
569
569
570
570
This package matches the API of React Router v7's `@react-router/fs-routes`, making the React Router v7 migration as easy as possible.
@@ -573,9 +573,8 @@ This package matches the API of React Router v7's `@react-router/fs-routes`, mak
This package matches the API of React Router v7's `@react-router/remix-routes-option-adapter`, making the React Router v7 migration as easy as possible.
0 commit comments