vite-plugin-electron-run
    Preparing search index...

    Interface LaunchContext

    Fully resolved parameters used to spawn an Electron process.

    interface LaunchContext {
        additionalArgs: string[];
        clearScreen: boolean;
        cwd: string;
        entryFile: string;
        env: Record<string, string>;
    }
    Index
    additionalArgs: string[]

    Arguments inserted before the Electron entry file.

    clearScreen: boolean

    Whether to clear the terminal immediately before launch.

    cwd: string

    Working directory used for the child process.

    entryFile: string

    Absolute path to the bundled Electron entry file.

    env: Record<string, string>

    Additional environment variables merged with the parent environment.