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

    Interface ElectronVitePluginOptions

    interface ElectronVitePluginOptions {
        cwd?: string;
        devServerUrlEnv?: string;
        main: ElectronViteTargetOptions;
        preload?: ElectronViteTargetOptions;
        runner?: ElectronRunOptions;
    }
    Index
    cwd?: string

    Base directory for entries and outputs. Defaults to process.cwd().

    devServerUrlEnv?: string

    Environment variable containing the resolved renderer URL. Defaults to VITE_DEV_SERVER_URL.

    Main-process build.

    Optional sandbox-compatible, single-file CommonJS preload build.

    Electron process-runner options. entry defaults to the main output basename and manageProcessSignals defaults to false so Vite owns host shutdown.