星星大魔王 (@realhot)分享一个Clash链式代理配置 中发帖

function main(config, profileName) {
// 你的其他代码
// 我建议放在这里,不影响其他配置
createRelayGroup(config, {
entryNodes: [],
exitNodes: [
// {
// name: 'SOCKS5 Proxy',
// type: 'socks5',
// server: 'xxxx',
// port: 10001,
// username: 'xxx',
// password: 'xx'
// }
// 示例节点
],
useAllNodesForEntryGroup: false
})
return config
}


//这个函数我建议放在代码最后面
function createRelayGrou...