Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.

Commit 8f4dcb6

Browse files
authored
Merge pull request #1325 from daslyfe/jade/udelsconfig
fix: udels header
2 parents ab76b44 + 17e1ebe commit 8f4dcb6

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed
Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
---
2+
import HeadCommon from '@components/HeadCommon.astro';
23
import { Udels } from '../../components/Udels/Udels.jsx';
3-
4-
5-
const { BASE_URL } = import.meta.env;
6-
const baseNoTrailing = BASE_URL.endsWith('/') ? BASE_URL.slice(0, -1) : BASE_URL;
74
---
85

9-
10-
<body class="m-0">
11-
<Udels client:only="react" />
12-
</body>
6+
<html lang="en" class="m-0">
7+
<head>
8+
<HeadCommon />
9+
<title>Strudel UDELS</title>
10+
</head>
11+
<body class="m-0">
12+
<Udels client:only="react" />
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)