@onexapis/cli 1.1.30 → 1.1.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/cli.mjs +1 -1
- package/dist/cli.mjs.map +1 -1
- package/dist/preview/preview-app.tsx +23 -20
- package/package.json +2 -2
- package/templates/default/CLAUDE.md +44 -16
package/dist/cli.mjs
CHANGED
|
@@ -4392,7 +4392,7 @@ init_logger();
|
|
|
4392
4392
|
var AUTH_DIR = path8.join(os3.homedir(), ".onexthm");
|
|
4393
4393
|
var AUTH_FILE = path8.join(AUTH_DIR, "auth.json");
|
|
4394
4394
|
function getApiUrl() {
|
|
4395
|
-
return process.env.
|
|
4395
|
+
return process.env.ONEXTHM_API_URL || process.env.NEXT_PUBLIC_API_URL || "https://platform-dev.onexeos.com";
|
|
4396
4396
|
}
|
|
4397
4397
|
async function saveAuthTokens(tokens) {
|
|
4398
4398
|
await fs.ensureDir(AUTH_DIR);
|