add convex

This commit is contained in:
2026-01-26 02:44:17 +08:00
parent 9ff4057166
commit a9d725eb29
11 changed files with 757 additions and 0 deletions

13
convex/auth.config.ts Normal file
View File

@@ -0,0 +1,13 @@
import { AuthConfig } from "convex/server";
export default {
providers: [
{
type: "customJwt",
applicationID: "convex-app",
issuer: "https://convex.kevisual.cn",
jwks: "https://api-convex.kevisual.cn/root/convex/jwks.json",
algorithm: "RS256",
},
],
};