fix problems
All checks were successful
Xiaoshiliu / build (push) Successful in 28s

This commit is contained in:
lychang
2025-10-05 14:11:48 +08:00
parent 32a387f856
commit 261c1482eb
4 changed files with 3 additions and 4 deletions

View File

@@ -24,7 +24,6 @@ COPY --from=build-stage /app/dist /usr/share/nginx/html
# 复制nginx配置文件
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY nginx.conf /usr/share/nginx/html/assets/@/assets/
# 暴露端口
EXPOSE 80

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>人生无限公司 - 你的图文部落</title>
<title>人生无限公司</title>
<!-- 基础favicon -->
<link rel="icon" type="image/x-icon" href="/logo.ico">

View File

@@ -32,5 +32,5 @@
"display": "standalone",
"theme_color": "#ff6b6b",
"background_color": "#ffffff",
"description": "人生无限公司 - 你的图文部落"
"description": "人生无限公司"
}

View File

@@ -1209,7 +1209,7 @@ const toggleCollect = async () => {
const handleShare = async () => {
try {
const shareUrl = `${props.item.title}-${props.item.author}| 人生无限公司 - 你的图文部落${window.location.origin}/post?id=${props.item.id}`
const shareUrl = `${props.item.title}-${props.item.author}| 人生无限公司 】${window.location.origin}/post?id=${props.item.id}`
// 检查是否支持现代剪贴板API
if (navigator.clipboard && navigator.clipboard.writeText) {