feat: add embed field
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
This commit is contained in:
parent
c7b853230e
commit
9981bc4158
1 changed files with 13 additions and 1 deletions
|
@ -9,7 +9,19 @@ export default defineNuxtConfig({
|
||||||
E.g.: baseURL set to "/web" would host at https://gorb.app/web
|
E.g.: baseURL set to "/web" would host at https://gorb.app/web
|
||||||
Default is "/" (aka root), which hosts at https://gorb.app/
|
Default is "/" (aka root), which hosts at https://gorb.app/
|
||||||
*/
|
*/
|
||||||
baseURL: "/web"
|
baseURL: "/web",
|
||||||
|
head: {
|
||||||
|
title: 'Gorb',
|
||||||
|
// this is purely used to embed in that other chat app, and similar stuff
|
||||||
|
meta: [
|
||||||
|
{ property: 'og:title', content: 'Gorb' },
|
||||||
|
{ property: 'og:description', content: 'Gorb is an open-source (and eventually federated) chat platform where you can join and chat in servers, chat privately in DMs, and more.' },
|
||||||
|
{ property: 'og:url', content: 'https://gorb.app/web' },
|
||||||
|
{ property: 'og:type', content: 'website' },
|
||||||
|
{ property: 'og:site_name', content: 'Gorb' },
|
||||||
|
{ property: 'theme-color', content: "#df5f0b" }
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
runtimeConfig: {
|
runtimeConfig: {
|
||||||
public: {
|
public: {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue