[READ ONLY MIRROR] Spark Social AppView Server github.com/sprksocial/server
atproto deno hono lexicon
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

cors

+3
+3
services/appview/src/index.ts
··· 1 1 import { DidResolver } from '@atproto/identity' 2 2 import { serve } from '@hono/node-server' 3 3 import { Hono } from 'hono' 4 + import { cors } from 'hono/cors' 4 5 import { HTTPException } from 'hono/http-exception' 5 6 import { logger } from 'hono/logger' 6 7 import { pino } from 'pino' ··· 80 81 } 81 82 82 83 const app = new Hono() 84 + 85 + app.use('*', cors()) 83 86 84 87 app.use('*', logger()) 85 88