Saves match configuration.
The match configuration to save.
export function saveMatchConfig(config: MatchConfig): void { try { storage.setItem(STORAGE_KEYS.MATCH_CONFIG, JSON.stringify(config)); } catch (error) { console.error("[Storage] Error saving match config to storage", error); }} Copy
export function saveMatchConfig(config: MatchConfig): void { try { storage.setItem(STORAGE_KEYS.MATCH_CONFIG, JSON.stringify(config)); } catch (error) { console.error("[Storage] Error saving match config to storage", error); }}
Saves match configuration.