@better-auth/infra 0.1.9-beta.1 → 0.1.10
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/client.mjs +1 -1
- package/dist/{constants-DWl1utFw.mjs → constants-B-e0_Nsv.mjs} +1 -1
- package/dist/email.mjs +1 -1
- package/dist/index.d.mts +261 -257
- package/dist/index.mjs +84 -92
- package/package.json +7 -4
package/dist/client.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { env } from "@better-auth/core/env";
|
|
|
5
5
|
* Infrastructure API URL
|
|
6
6
|
* Can be overridden via plugin config or BETTER_AUTH_API_URL env var for local development
|
|
7
7
|
*/
|
|
8
|
-
const INFRA_API_URL = env.BETTER_AUTH_API_URL || "https://
|
|
8
|
+
const INFRA_API_URL = env.BETTER_AUTH_API_URL || "https://dash.better-auth.com";
|
|
9
9
|
/**
|
|
10
10
|
* KV Storage URL
|
|
11
11
|
* Can be overridden via plugin config or BETTER_AUTH_KV_URL env var for local development
|
package/dist/email.mjs
CHANGED