dockerfiles/sub/conf/config.js

33 lines
796 B
JavaScript
Raw Normal View History

2022-07-16 17:15:44 +08:00
window.config = {
2024-03-31 22:17:18 +08:00
// 网站标题
2022-07-16 17:15:44 +08:00
siteName: 'Subconverter Web',
2024-03-31 22:17:18 +08:00
// API 地址
2022-07-16 17:15:44 +08:00
apiUrl: 'http://127.0.0.1:25500',
2024-03-31 22:17:18 +08:00
// 短域名服务地址
2022-08-05 14:19:50 +08:00
shortUrl: 'https://s.ops.ci',
2024-03-31 22:17:18 +08:00
// 首页菜单
2022-07-16 17:15:44 +08:00
menuItem: [
{
title: '首页',
link: '/',
target: '',
},
{
title: 'GitHub',
link: 'https://github.com/stilleshan/subweb',
target: '_blank',
},
],
2024-03-31 22:17:18 +08:00
// 远程配置地址,可以自行按照格式添加。
remoteConfigOptions: [
{
value: 'https://raw.githubusercontent.com/ACL4SSR/ACL4SSR/master/Clash/config/ACL4SSR_Online.ini',
text: 'ACL4SSR Online',
},
{
value: 'https://raw.githubusercontent.com/ACL4SSR/ACL4SSR/master/Clash/config/ACL4SSR_Online_Full.ini',
text: 'ACL4SSR Online Full',
},
],
2022-07-16 17:15:44 +08:00
};