We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40cd4e1 commit 9f5107bCopy full SHA for 9f5107b
1 file changed
packages/plugin-rsc/src/plugin.ts
@@ -198,7 +198,7 @@ export type RscPluginOptions = {
198
/** client reference module id */
199
id: string
200
/** normalized client reference module id */
201
- relativeId: string
+ normalizedId: string
202
/** server chunk which includes a corresponding client reference proxy module */
203
serverChunk: string
204
}) => string | undefined
@@ -1193,7 +1193,7 @@ function vitePluginUseClient(
1193
let name =
1194
useClientPluginOptions.clientChunks?.({
1195
id: meta.importId,
1196
- relativeId: manager.toRelativeId(meta.importId),
+ normalizedId: manager.toRelativeId(meta.importId),
1197
serverChunk: meta.serverChunk!,
1198
}) ?? meta.serverChunk!
1199
// ensure clean virtual id to avoid interfering with other plugins
0 commit comments