default accepted for installer quesitons

This commit is contained in:
Brian Madison
2025-12-15 12:55:57 +08:00
parent 6513c77d1b
commit 60238d2854
9 changed files with 110 additions and 21 deletions

View File

@@ -61,7 +61,10 @@ class IdeConfigManager {
configuration: configuration || {},
};
const yamlContent = yaml.stringify(configData, {
// Clean the config to remove any non-serializable values (like functions)
const cleanConfig = structuredClone(configData);
const yamlContent = yaml.stringify(cleanConfig, {
indent: 2,
lineWidth: 0,
sortKeys: false,