Skip to content

Commit

Permalink
fix: fix array join
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-ogawa committed Apr 13, 2024
1 parent a098762 commit 7ae0574
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/react-server/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ function vitePluginUseClient(): PluginOption {
tinyassert(this.environment?.mode === "build");
return [
`export default {`,
...Array(manager.clientReferences).map(
...Array.from(manager.clientReferences).map(
(id) => `"${id}": () => import("${id}"),`,
),
`}`,
Expand Down

0 comments on commit 7ae0574

Please sign in to comment.