Skip to content

Commit

Permalink
vite: fix "could not fast refresh" false alarm (#8580)
Browse files Browse the repository at this point in the history
  • Loading branch information
pcattori committed Jan 23, 2024
1 parent 6ce2250 commit 6debfd5
Showing 1 changed file with 2 additions and 1 deletion.
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 6debfd5

Please sign in to comment.