45 lines
863 B
JavaScript
45 lines
863 B
JavaScript
// 配置
|
||
window.Config = {
|
||
|
||
// 显示标题
|
||
SiteName: '浅语站点监测',
|
||
|
||
// UptimeRobot Api Keys
|
||
// 支持 Monitor-Specific 和 Read-Only
|
||
ApiKeys: [
|
||
'ur2265723-f304ae7cfe64b92fbd6147f8',
|
||
],
|
||
|
||
// 日志天数
|
||
// 虽然免费版说仅保存60天日志,但测试好像API可以获取90天的
|
||
// 不过时间不要设置太长,容易卡,接口请求也容易失败
|
||
CountDays: 60,
|
||
|
||
// 是否显示检测站点的链接
|
||
ShowLink: true,
|
||
|
||
// 导航栏菜单
|
||
Navi: [
|
||
{
|
||
text: '主页',
|
||
url: 'https://uv.wiki'
|
||
},
|
||
{
|
||
text: '博客',
|
||
url: 'https://rainss.cn'
|
||
},
|
||
{
|
||
text: '工具',
|
||
url: 'https://tool.rainss.cn'
|
||
},
|
||
{
|
||
text: '监控',
|
||
url: 'https://dash.rains.autos'
|
||
},
|
||
{
|
||
text: 'Github',
|
||
url: 'https://github.com/rainerosion'
|
||
},
|
||
],
|
||
};
|