Gets the application version for the renderer process (React).

const version = getAppVersion();
export const getAppVersion = (): string => {
// In renderer process, get from env variable set by the main process
return import.meta.env.VITE_APP_VERSION || "1.0.0";
};