File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,10 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula');
7
7
const organizationName = 'rx-angular' ;
8
8
const projectName = 'rx-angular' ;
9
9
const title = 'RxAngular' ;
10
+ const description =
11
+ 'RxAngular offers a comprehensive toolset for handling fully reactive Angular applications with the main focus on runtime performance and template rendering.' ;
10
12
const url = 'https://rx-angular.io' ;
13
+ const logo = 'https://www.rx-angular.io/img/logo.png' ;
11
14
12
15
const googleTrackingId = 'UA-180240379-1' ;
13
16
@@ -72,6 +75,41 @@ module.exports = {
72
75
themeConfig :
73
76
/** @type {import('@docusaurus/preset-classic').ThemeConfig } */
74
77
( {
78
+ metadata : [
79
+ {
80
+ name : 'description' ,
81
+ content : description ,
82
+ } ,
83
+ {
84
+ property : 'og:title' ,
85
+ content : title ,
86
+ } ,
87
+ /** @type {* } - website | profile | article | product */
88
+ {
89
+ property : 'og:type' ,
90
+ content : 'website' ,
91
+ } ,
92
+ { property : 'og:url' , content : url } ,
93
+ { property : 'og:image' , content : logo } ,
94
+ { property : 'og:description' , content : description } ,
95
+ /** @type {* } - summary | summary_large_image | app | player */
96
+ {
97
+ name : 'twitter:card' ,
98
+ content : 'summary_large_image' ,
99
+ } ,
100
+ {
101
+ name : 'twitter:title' ,
102
+ content : title ,
103
+ } ,
104
+ {
105
+ name : 'twitter:description' ,
106
+ content : description ,
107
+ } ,
108
+ {
109
+ name : 'twitter:image' ,
110
+ content : logo ,
111
+ } ,
112
+ ] ,
75
113
navbar : {
76
114
title : 'RxAngular' ,
77
115
logo : {
You can’t perform that action at this time.
0 commit comments