Skip to content

Commit 4602238

Browse files
author
底层用户
committed
first commit
0 parents  commit 4602238

File tree

7 files changed

+85
-0
lines changed

7 files changed

+85
-0
lines changed

config.js

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
// 配置
2+
window.Config = {
3+
4+
// 站点名
5+
SiteName: 'IMSYY 站点监测',
6+
7+
// 站点链接
8+
SiteUrl: 'https://status.imsyy.top/',
9+
10+
// UptimeRobot Api 域名
11+
// 只需填写域名部分,默认为官网域名
12+
// 因官网 API 时不时的会 CROS 报错,可填自定义反代域名
13+
// 详见 https://github.com/yb/uptime-status/ 说明
14+
ApiDomain: 'status.imsyy.workers.dev',
15+
// UptimeRobot Api Keys
16+
// 支持 Monitor-Specific 和 Read-Only 两只 Api Key
17+
ApiKeys: [
18+
'ur1022423-1019cd0e942707cf21d80847',
19+
],
20+
21+
// 是否显示监测站点的链接
22+
ShowLink: true,
23+
24+
// 日志天数
25+
// 虽然免费版说仅保存60天日志,但测试好像API可以获取90天的
26+
// 不过时间不要设置太长,容易卡,接口请求也容易失败
27+
CountDays: 60,
28+
29+
// 导航栏菜单
30+
Navi: [
31+
{
32+
text: '主页',
33+
url: 'https://imsyy.top/'
34+
},
35+
{
36+
text: '博客',
37+
url: 'https://blog.imsyy.top/'
38+
}
39+
]
40+
};

favicon.ico

33.7 KB
Binary file not shown.

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<!doctype html><html><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"/><title>IMSYY 站点监测</title><link rel="shortcut icon" href="./favicon.ico" type="image/x-icon"/><script src="./config.js"></script><link href="./static/css/main.5e956d1c.css" rel="stylesheet"></head><body><div id="app"></div><script src="./static/js/main.cf8e237d.js"></script></body></html>

static/css/main.5e956d1c.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/js/main.cf8e237d.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
/*
2+
object-assign
3+
(c) Sindre Sorhus
4+
@license MIT
5+
*/
6+
7+
/** @license React v0.20.1
8+
* scheduler.production.min.js
9+
*
10+
* Copyright (c) Facebook, Inc. and its affiliates.
11+
*
12+
* This source code is licensed under the MIT license found in the
13+
* LICENSE file in the root directory of this source tree.
14+
*/
15+
16+
/** @license React v17.0.1
17+
* react-dom.production.min.js
18+
*
19+
* Copyright (c) Facebook, Inc. and its affiliates.
20+
*
21+
* This source code is licensed under the MIT license found in the
22+
* LICENSE file in the root directory of this source tree.
23+
*/
24+
25+
/** @license React v17.0.1
26+
* react-jsx-runtime.production.min.js
27+
*
28+
* Copyright (c) Facebook, Inc. and its affiliates.
29+
*
30+
* This source code is licensed under the MIT license found in the
31+
* LICENSE file in the root directory of this source tree.
32+
*/
33+
34+
/** @license React v17.0.1
35+
* react.production.min.js
36+
*
37+
* Copyright (c) Facebook, Inc. and its affiliates.
38+
*
39+
* This source code is licensed under the MIT license found in the
40+
* LICENSE file in the root directory of this source tree.
41+
*/
17.2 KB
Loading

0 commit comments

Comments
 (0)