Fix import statement for authConfig in convex.mdx

This commit is contained in:
Soham Datta
2025-12-18 20:44:49 +05:30
committed by GitHub
parent 4b0924b218
commit 8a21ea23a6

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