From 044b7142958fe074d054942adf11a9e9722322ec Mon Sep 17 00:00:00 2001 From: JustTemmie <47639983+JustTemmie@users.noreply.github.com> Date: Fri, 2 May 2025 02:57:46 +0200 Subject: [PATCH] feat: include data for other platforms to generate embeds --- nuxt.config.ts | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index c27a274..faf56fd 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -2,5 +2,19 @@ export default defineNuxtConfig({ compatibilityDate: '2024-11-01', devtools: { enabled: true }, - modules: ['@nuxt/fonts', '@nuxt/image'] + modules: ['@nuxt/fonts', '@nuxt/image'], + app: { + head: { + title: 'Gorb - The Chat App', + // this is purely used to embed in that other chat app, and similar stuff + meta: [ + { property: 'og:title', content: 'Gorb - The Federated Chat App' }, + { property: 'og:description', content: 'GORB! The open-source and federated chat application!' }, + // { property: 'og:image', content: 'missing' }, + { property: 'og:url', content: 'https://gorb.app' }, + { property: 'og:type', content: 'website' }, + { property: 'og:site_name', content: 'Gorb' } + ] + } + } }) \ No newline at end of file