Skip to content

Commit 033125e

Browse files
beilunyangclaude
andcommitted
feat(cli): default api-url to https://moemail.app
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f66c3e8 commit 033125e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli/src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const CONFIG_DIR = join(homedir(), ".moemail");
1111
const CONFIG_FILE = join(CONFIG_DIR, "config.json");
1212

1313
export function loadConfig(): CliConfig {
14-
const config: CliConfig = { apiUrl: "", apiKey: "" };
14+
const config: CliConfig = { apiUrl: "https://moemail.app", apiKey: "" };
1515

1616
// File config
1717
if (existsSync(CONFIG_FILE)) {

0 commit comments

Comments
 (0)