fix(web): honor XDG_CONFIG_HOME for OpenCode paths (#3305)

Closes #3304. Thanks for consolidating the global OpenCode paths. VS Code path parity and effective-path display follow-ups are maintainer-owned.
This commit is contained in:
tdoherty
2026-09-05 02:14:26 +03:00
committed by GitHub
parent 64f9f3aba7
commit 0543b954c3
11 changed files with 130 additions and 17 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
import fs from 'fs';
import os from 'os';
import path from 'path';
import {
AGENT_SCOPE,
OPENCODE_CONFIG_DIR,
readConfigFile,
readConfigLayer,
writeConfig,
@@ -71,7 +71,7 @@ function getActiveOpencodeConfigDir() {
if (customConfigPath) {
return path.dirname(path.resolve(customConfigPath));
}
return path.join(os.homedir(), '.config', 'opencode');
return OPENCODE_CONFIG_DIR;
}
function getActiveUserConfigPaths() {