Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
remix-run-bot committed Aug 28, 2024
1 parent 5a38eba commit 93d1c9d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .changeset/moody-cups-give.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ Then you are ready for the new typesafety setup:

declare module "@remix-run/server-runtime" {
interface Future {
unstable_singleFetch: true // 👈 enable _types_ for single-fetch
unstable_singleFetch: true; // 👈 enable _types_ for single-fetch
}
}

export default defineConfig({
plugins: [
remix({
future: {
unstable_singleFetch: true // 👈 enable single-fetch
}
})
]
})
unstable_singleFetch: true, // 👈 enable single-fetch
},
}),
],
});
```

For more information, see [Guides > Single Fetch](https://remix.run/docs/en/dev/guides/single-fetch) in our docs.

0 comments on commit 93d1c9d

Please sign in to comment.