-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 655a318
Showing
83 changed files
with
20,766 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# 站点名称 | ||
VITE_SITE_NAME = "LiveForCode" | ||
VITE_SITE_AUTHOR = "WorstOne" | ||
VITE_SITE_KEYWORDS = "WorstOne,个人主页" | ||
VITE_SITE_DES = "WorstOne 的个人主页" | ||
VITE_SITE_URL = "https://worstone.cn" | ||
VITE_SITE_LOGO = "/image/icon/logo.png" | ||
VITE_SITE_FILING = "辽ICP备2022009735号" | ||
|
||
# 百度统计(若不需要可不填) | ||
VITE_SITE_BAIDUCOUNT = "" | ||
|
||
# 简介文本 | ||
VITE_DESC_HELLO = "Hello World !" | ||
VITE_DESC_TEXT = "一个建立于 21 世纪的小站,存活于互联网的边缘。" | ||
VITE_DESC_HELLO_OTHER = "Oops !" | ||
VITE_DESC_TEXT_OTHER = "哎呀,这都被你发现了( 再次点击可关闭 )!" | ||
|
||
# 每日一句 | ||
VITE_SENTENCE_ENABLE = "true" | ||
|
||
# 社交链接 | ||
## 请在 public/data 目录下的 socialLinks.json 文件中配置 | ||
|
||
# 网站列表 | ||
## 请在 public/data 目录下的 websiteLinks.json 文件中配置 | ||
|
||
# 背景图片 | ||
## 请在 public/data 目录下的 background.json 文件中配置 | ||
|
||
# 默哀模式 | ||
## 请在 public/data 目录下的 mourn.json 文件中配置 | ||
## 注: 不是默哀模式的开关, 而是手动开启默哀模式(非指定日期) | ||
|
||
# 控制台内容 | ||
## 请在 public/data 目录下的 console.json 文件中配置 | ||
|
||
# 天气 Key | ||
## 请前往高德开放平台注册 Web 服务 Key(免费的) | ||
VITE_WEATHER_KEY = "8292d245d9b4945a8cf300ad15513d34" | ||
|
||
# 建站日期 | ||
## 请按照 YYYY-MM-DD 格式填写 | ||
VITE_SITE_START = "2023-05-05" | ||
|
||
# 歌曲 API 地址 | ||
## 请参照 https://github.com/xizeyoupan/Meting-API#deno-deploy 进行 API 服务部署 | ||
## 此处提供的服务可能会超量从而无法访问,请自行部署 | ||
## 若使用 QQ音乐 歌单,歌曲数量最好不要超出 50 首 | ||
## 备用:https://api.wuenci.com/meting/api/ | ||
VITE_MUSIC_API = "https://api.i-meto.com/meting/api" | ||
# 歌曲服务器 ( netease-网易云, tencent-qq音乐 ) | ||
VITE_MUSIC_SERVER = "netease" | ||
# 播放类型 ( song-歌曲, playlist-播放列表, album-专辑, search-搜索, artist-艺术家 ) | ||
VITE_MUSIC_TYPE = "playlist" | ||
# 播放 ID | ||
VITE_MUSIC_ID = "2243342814" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
dist | ||
dist-ssr | ||
*.local | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"extends": [ | ||
"development" | ||
], | ||
"hints": { | ||
"compat-api/html": "off", | ||
"no-protocol-relative-urls": "off", | ||
"compat-api/css": [ | ||
"default", | ||
{ | ||
"ignore": [ | ||
"backdrop-filter" | ||
] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"recommendations": ["Vue.volar"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2022 imsyy | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Oops, something went wrong.
655a318
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
home – ./
home-two-alpha.vercel.app
home-worstone.vercel.app
home-git-main-worstone.vercel.app