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 }); ```