KC's Workspace
    Preparing search index...
    interface ExternalFetchResult {
        externalize: string;
        type: "module" | "commonjs" | "builtin" | "network";
    }
    Index
    externalize: string

    The path to the externalized module starting with file://. By default this will be imported via a dynamic "import" instead of being transformed by Vite and loaded with the Vite runner.

    type: "module" | "commonjs" | "builtin" | "network"

    Type of the module. Used to determine if the import statement is correct. For example, if Vite needs to throw an error if a variable is not actually exported.