Skip to content

Commit c9cb00f

Browse files
committed
feat: Add html head meta
1 parent 60a6310 commit c9cb00f

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

app.vue

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,16 @@ body {
3434
::-webkit-scrollbar-thumb:hover {
3535
background-color: #c00007;
3636
}
37-
</style>
37+
</style>
38+
39+
<script setup lang="ts">
40+
useHead({
41+
title: 'redGPT',
42+
meta: [
43+
{
44+
name: 'description',
45+
content: 'A materialist search engine'
46+
}
47+
]
48+
})
49+
</script>

0 commit comments

Comments
 (0)