Skip to content

Commit c9d1126

Browse files
Move open-graph to head meta
1 parent f131340 commit c9d1126

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

app.vue

-7
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,6 @@
55
</template>
66

77
<script setup>
8-
useSeoMeta({
9-
title: "Clean Cuts",
10-
ogTitle: "Clean Cuts",
11-
ogDescription: "Making game data viewable in a human-friendly format.",
12-
ogImage: "https://blossomishymae.github.io/clean-cuts/favicon.png",
13-
themeColor: "#000000",
14-
});
158
</script>
169

1710
<style>

nuxt.config.ts

+5
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ export default defineNuxtConfig({
2222
},
2323
meta: [
2424
{ name: "viewport", content: "width=device-width, initial-scale=1" },
25+
{ name: "title", content: "Clean Cuts"},
26+
{ name: "og:title", content: "Clean Cuts"},
27+
{ name: "og:description", content: "Making game data viewable in a human-friendly format."},
28+
{ name: "og:image", content: "https://blossomishymae.github.io/clean-cuts/favicon.png"},
29+
{ name: "theme-color", content: "#000000"}
2530
],
2631
link: [
2732
{

0 commit comments

Comments
 (0)