@@ -8,13 +8,19 @@ export default defineConfig({
8
8
outDir : '../dist' ,
9
9
/* --- HOME PAGE --- */
10
10
title : 'Agoric Documentation' , // title for the site. prefix for all page titles and displayed in the navbar
11
- description : 'Build, deploy and operate dApps and DeFi markets .' , // desc for the site; rendered as a <meta> tag in the page HTML
11
+ description : 'The blockchain framework tailored for JavaScript developers .' , // desc for the site; rendered as a <meta> tag in the page HTML
12
12
// Extra tags to inject into the page HTML <head>. You can specify each tag in the form of [tagName, { attrName: attrValue }, innerHTML?].
13
13
head : [
14
14
[
15
15
'meta' ,
16
16
{ name : 'viewport' , content : 'width=device-width, initial-scale=1' } ,
17
17
] ,
18
+ [ 'meta' , { name : 'og:image' , content : '/agoric-og.png' } ] ,
19
+ [ 'meta' , { name : 'og:type' , content : 'website' } ] ,
20
+ [ 'meta' , { name : 'og:title' , content : 'Agoric Documentation' } ] ,
21
+ [ 'meta' , { name : 'og:site_name' , content : 'Agoric Documentation' } ] ,
22
+ [ 'meta' , { name : 'og:url' , content : 'https://docs.agoric.com' } ] ,
23
+ [ 'meta' , { name : 'twitter:card' , content : '/agoric-og.png' } ] ,
18
24
[ 'link' , { rel : 'icon' , href : '/favicon-full.ico' } ] ,
19
25
[
20
26
'style' ,
0 commit comments