UNPKG

create-mf2-app

Version:

The stack AI moves fast with.

27 lines (21 loc) 823 B
import { defineApp } from "convex/server"; import resend from "@convex-dev/resend/convex.config"; import actionCache from "@convex-dev/action-cache/convex.config"; import actionRetrier from "@convex-dev/action-retrier/convex.config"; import migrations from "@convex-dev/migrations/convex.config"; import polar from "@convex-dev/polar/convex.config"; import presence from "@convex-dev/presence/convex.config"; import r2 from "@convex-dev/r2/convex.config"; import rateLimiter from "@convex-dev/rate-limiter/convex.config"; import shardedCounter from "@convex-dev/sharded-counter/convex.config"; const app = defineApp(); app.use(actionCache); app.use(actionRetrier); app.use(rateLimiter); app.use(migrations); app.use(presence); app.use(shardedCounter); app.use(polar); app.use(r2); app.use(resend); export default app;