From b8702898c5146d95e8aecf6669eff400a0e927ef Mon Sep 17 00:00:00 2001 From: Saviru Date: Wed, 14 Jan 2026 03:56:56 +0530 Subject: [PATCH] Update docs/content/docs/reference/options.mdx Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> --- docs/content/docs/reference/options.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/docs/reference/options.mdx b/docs/content/docs/reference/options.mdx index 7efd645cc1..ca72882898 100644 --- a/docs/content/docs/reference/options.mdx +++ b/docs/content/docs/reference/options.mdx @@ -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 }); ```