Skip to content

Commit

Permalink
vite: fix "could not fast refresh" false alarm
Browse files Browse the repository at this point in the history
  • Loading branch information
pcattori committed Jan 22, 2024
1 parent 10fcf5b commit 2a38973
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 2a38973

Please sign in to comment.