Files
drive/packages/convex/http.ts

8 lines
260 B
TypeScript

import { httpRouter } from "convex/server"
import { authComponent, createAuth } from "./auth"
const http = httpRouter()
// CORS handling is required for client side frameworks
authComponent.registerRoutes(http, createAuth, { cors: true })
export default http