- Add dashboard shell with auth integration - Wire Better Auth / Convex (client, server, HTTP routes) - Add shadcn-style UI primitives and logo assets - Update global styles and landing page - Add internal docs (.docs) Made-with: Cursor
8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
import { defineApp } from "convex/server";
|
|
import betterAuth from "@convex-dev/better-auth/convex.config";
|
|
|
|
const app = defineApp();
|
|
app.use(betterAuth);
|
|
|
|
export default app;
|