docs(convex): fix import statement for authConfig (#6861)

This commit is contained in:
Soham Datta
2025-12-19 10:57:53 +05:30
committed by github-actions[bot]
parent 646ff722a0
commit c2eb2b77c4

View File

@@ -147,7 +147,7 @@ If you're not using Next.js, support for other frameworks is documented in the [
import { DataModel } from "./_generated/dataModel";
import { query } from "./_generated/server";
import { betterAuth } from "better-auth";
import { authConfig } from "./auth.config";
import authConfig from "./auth.config";
const siteUrl = process.env.SITE_URL!;
@@ -392,4 +392,4 @@ export async function updatePassword({
newPassword,
});
}
```
```