Skip to content

Commit c041191

Browse files
committed
fix: og image
1 parent 6e8c480 commit c041191

4 files changed

Lines changed: 14 additions & 10 deletions

File tree

apps/frontend/nuxt.config.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ export default defineNuxtConfig({
1111
pathPrefix: false,
1212
},
1313
],
14+
// Routes
15+
routeRules: {},
1416
// Runtime
1517
runtimeConfig: {
1618
public: {
@@ -27,9 +29,6 @@ export default defineNuxtConfig({
2729
prerender: {
2830
autoSubfolderIndex: false,
2931
},
30-
experimental: {
31-
wasm: true,
32-
},
3332
preset: "cloudflare-module",
3433
cloudflare: {
3534
nodeCompat: true,
@@ -40,6 +39,9 @@ export default defineNuxtConfig({
4039
blockAiBots: true,
4140
blockNonSeoBots: true,
4241
},
42+
ogImage: {
43+
enabled: false,
44+
},
4345
// Development
4446
compatibilityDate: "2025-07-15",
4547
devtools: { enabled: true },

apps/frontend/src/app/app.vue

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
<script setup lang="ts">
22
import type { ToasterProps } from "@nuxt/ui";
33
4-
defineOgImageComponent("BasicOG");
5-
64
const toaster: ToasterProps = { position: "top-right" };
75
86
const siteConfig = useSiteConfig();
7+
8+
useSeoMeta({
9+
title: "Solitar",
10+
description: "The only URL toolbox that you need",
11+
ogTitle: "Solitar",
12+
ogDescription: "The only URL toolbox that you need",
13+
ogImage: "/og.png",
14+
twitterCard: "summary_large_image",
15+
});
916
</script>
1017

1118
<template>

apps/frontend/src/app/components/OgImage/BasicOG.vue

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)