Update docs/content/docs/reference/options.mdx

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
This commit is contained in:
Saviru
2026-01-14 03:56:56 +05:30
committed by GitHub
parent bb44793e5b
commit b8702898c5

View File

@@ -55,8 +55,8 @@ For example, if your backend is at `http://localhost:4000` and your frontend is
```ts
import { betterAuth } from "better-auth";
export const auth = betterAuth({
baseURL: "http://localhost:3000", // Backend URL
baseCallbackURL: "http://localhost:4000", // Frontend URL
baseURL: "http://localhost:4000", // Backend URL
baseCallbackURL: "http://localhost:3000", // Frontend URL
});
```