[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

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

at main 27 lines 546 B view raw
1import { defineConfig } from '@lunariajs/core/config' 2import { locales, sourceLocale } from './lunaria/prepare-json-files.ts' 3 4export default defineConfig({ 5 repository: { 6 name: 'npmx-dev/npmx.dev', 7 }, 8 sourceLocale, 9 locales, 10 files: [ 11 { 12 include: ['lunaria/files/en-US.json'], 13 pattern: 'lunaria/files/@lang.json', 14 type: 'dictionary', 15 }, 16 ], 17 tracking: { 18 ignoredKeywords: [ 19 'lunaria-ignore', 20 'typo', 21 'en-only', 22 'broken link', 23 'i18nReady', 24 'i18nIgnore', 25 ], 26 }, 27})