feat: include data for other platforms to generate embeds
This commit is contained in:
parent
fcd423f457
commit
044b714295
1 changed files with 15 additions and 1 deletions
|
@ -2,5 +2,19 @@
|
||||||
export default defineNuxtConfig({
|
export default defineNuxtConfig({
|
||||||
compatibilityDate: '2024-11-01',
|
compatibilityDate: '2024-11-01',
|
||||||
devtools: { enabled: true },
|
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' }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
})
|
})
|
Loading…
Add table
Add a link
Reference in a new issue