Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/docs/framework-guides/meta.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"title": "Framework Guides",
"pages": ["react", "expo", "tanstack-start", "next"],
"pages": ["react", "expo", "tanstack-start", "next", "sveltekit"],
"defaultOpen": true
}
4 changes: 2 additions & 2 deletions docs/content/docs/framework-guides/next.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ description: Install and configure Convex + Better Auth for Next.js.
<div className="fd-step">
### Set environment variables

Generate a secret for encryption and generating hashes. Use the command below if you have openssl installed, or use the button to generate a random value instead. Or generate your own however you like.
Generate a secret for encryption and generating hashes. Use the command below if you have openssl installed, or generate your own however you like.

```shell
npx convex env set BETTER_AUTH_SECRET=$(openssl rand -base64 32)
Expand Down Expand Up @@ -139,7 +139,7 @@ description: Install and configure Convex + Better Auth for Next.js.
logger: {
disabled: optionsOnly,
},
baseUrl: siteUrl,
baseURL: siteUrl,
database: authComponent.adapter(ctx),
// Configure simple, non-verified email/password to get started
emailAndPassword: {
Expand Down
Loading