14 lines
426 B
JavaScript
14 lines
426 B
JavaScript
const { termsMap } = require('./termsMap');
|
|
|
|
module.exports = {
|
|
'thecatcity.com': {
|
|
_name: '貓奴日常',
|
|
'.': Object.entries(termsMap).map(([key, value]) => ({
|
|
title: value.title,
|
|
docs: 'https://docs.rsshub.app/routes/new-media#mao-nu-ri-chang',
|
|
source: [...new Set([value.slug, '/'])],
|
|
target: `/thecatcity${key ? `/${key}` : ''}`,
|
|
})),
|
|
},
|
|
};
|