your personal website on atproto - mirror blento.app
23
fork

Configure Feed

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

at main 23 lines 519 B view raw
1import { defineLexiconConfig } from '@atcute/lex-cli'; 2 3export default defineLexiconConfig({ 4 files: ['lexicons/**/*.json', 'lexicons-pulled/**/*.json', 'lexicons-generated/**/*.json'], 5 outdir: 'src/lexicon-types/', 6 imports: ['@atcute/atproto'], 7 pull: { 8 outdir: 'lexicons-pulled/', 9 sources: [ 10 { 11 type: 'atproto', 12 mode: 'nsids', 13 nsids: [ 14 'app.blento.card', 15 'app.blento.page', 16 'app.blento.section', 17 'app.bsky.actor.profile', 18 'site.standard.publication' 19 ] 20 } 21 ] 22 } 23});