19 lines
492 B
JavaScript
19 lines
492 B
JavaScript
module.exports = {
|
|
'cbaigui.com': {
|
|
_name: '纪妖',
|
|
'.': [
|
|
{
|
|
title: '通用',
|
|
docs: 'https://docs.rsshub.app/routes/new-media#ji-yao-tong-yong',
|
|
source: ['/'],
|
|
target: (params, url) => {
|
|
url = new URL(url);
|
|
const path = url.href.match(/\.com(.*?)/)[1];
|
|
|
|
return `/cbaigui${path}`;
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|