Skip to content

Commit 28da844

Browse files
committed
fix: correct syntax for stylesheet link in head configuration
1 parent 00f6dee commit 28da844

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.vitepress/config/head.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const head: HeadConfig[] = [
66
["link", { rel: "dns-prefetch", href: "https://fonts.googleapis.cn" }],
77
["link", { rel: "preconnect", href: "https://fonts.gstatic.cn", crossorigin: "" }],
88
["link", { rel: "dns-prefetch", href: "https://fonts.gstatic.cn" }],
9-
["link", { rel: "stylesheet", href: "https://fonts.googleapis.com/css2?family=Outfit:[email protected]&display=swap" rel="stylesheet" }],
9+
["link", { rel: "stylesheet", href: "https://fonts.googleapis.com/css2?family=Outfit:[email protected]&display=swap" }],
1010

1111
// --- 基础和SEO元数据 ---
1212
["link", { rel: "icon", href: "/logo.png" }],

dev/star/guides/html-to-pic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async def on_aiocqhttp(self, event: AstrMessageEvent, text: str):
1414

1515
```
1616

17-
![](../../source/images/plugin/image-3.png)
17+
![](../../../source/images/plugin/image-3.png)
1818

1919
## 自定义(基于 HTML)
2020

0 commit comments

Comments
 (0)