wip bsky client for the web & android
0
fork

Configure Feed

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

at main 19 lines 432 B view raw
1import { defineLexiconConfig } from '@atcute/lex-cli' 2 3export default defineLexiconConfig({ 4 files: ['./lexicons/**/*.json'], 5 outdir: './src/lex/', 6 imports: ['@atcute/atproto', '@atcute/bluesky'], 7 pull: { 8 outdir: './lexicons/', 9 clean: false, 10 sources: [ 11 { 12 type: 'git', 13 ref: 'main', 14 remote: 'https://tangled.org/vt3e.cat/bbell-backend.git', 15 pattern: ['pkgs/lexicons/lexicons/**/*.json'], 16 }, 17 ], 18 }, 19})