diff --git a/src/plugins/runtime/runtime-web-channel-plugin.ts b/src/plugins/runtime/runtime-web-channel-plugin.ts index 40dadfc9edd..1e2f1354757 100644 --- a/src/plugins/runtime/runtime-web-channel-plugin.ts +++ b/src/plugins/runtime/runtime-web-channel-plugin.ts @@ -9,6 +9,7 @@ import { } from "../../media/web-media.js"; import type { PollInput } from "../../polls.js"; import type { PluginJitiLoaderCache } from "../jiti-loader-cache.js"; +import type { PluginOrigin } from "../plugin-origin.types.js"; import { loadPluginBoundaryModule, resolvePluginRuntimeRecordByEntryBaseNames, @@ -16,7 +17,7 @@ import { } from "./runtime-plugin-boundary.js"; type WebChannelPluginRecord = { - origin?: string; + origin?: PluginOrigin; rootDir?: string; source: string; };