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

    Properties

    code: string

    Code that will be evaluated by 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 equal to 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.