KC's Workspace
    Preparing search index...
    interface ViteFetchResult {
        code: string;
        file: string | null;
        id: string;
        invalidate: boolean;
        url: string;
    }
    Index
    code: string

    Code that will be evaluated by the Vite runner. By default this will be wrapped in an async function.

    file: string | null

    File path of the module on disk. This will be resolved as import.meta.url/filename. Will be null for virtual modules.

    id: string

    Module ID in the server module graph.

    invalidate: boolean

    Invalidate module on the client side.

    url: string

    Module URL used in the import.