Skip to content

Commit

Permalink
vite: fix "could not fast refresh" false alarm (remix-run#8580)
Browse files Browse the repository at this point in the history
  • Loading branch information
pcattori authored Jan 23, 2024
1 parent 10fcf5b commit 0bc6c12
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .changeset/fast-dodos-yell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
"@remix-run/dev": patch
---

Vite: fix "could not fast refresh" false alarm

HMR is already functioning correctly but was incorrectly logging that it "could not fast refresh" on internal client routes.
Now internal client routes correctly register Remix exports like `meta` for fast refresh,
which removes the false alarm.
3 changes: 2 additions & 1 deletion packages/remix-dev/vite/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1468,7 +1468,8 @@ function addRefreshWrapper(
code: string,
id: string
): string {
let isRoute = getRoute(pluginConfig, id);
let isRoute =
id.endsWith(CLIENT_ROUTE_QUERY_STRING) || getRoute(pluginConfig, id);
let acceptExports = isRoute
? [
"clientAction",
Expand Down

0 comments on commit 0bc6c12

Please sign in to comment.