forked from
jollywhoppers.com/witchsky.app
fork
Configure Feed
Select the types of activity you want to include in your feed.
Bluesky app fork with some witchin' additions 馃挮
fork
Configure Feed
Select the types of activity you want to include in your feed.
1import path from 'node:path'
2import {fileURLToPath} from 'node:url'
3
4import i18n from 'i18n'
5
6const __filename = fileURLToPath(import.meta.url)
7const __dirname = path.dirname(__filename)
8
9i18n.configure({
10 locales: ['en', 'es', 'fr'],
11 defaultLocale: 'en',
12 directory: path.join(__dirname, '../locales'),
13})
14
15export default i18n