@@ -31,6 +31,8 @@ export interface ConfigWithoutLocales {
3131 // Adds Google Tag Manager to your documentation pages.
3232 googleTagManager : string ;
3333 // Whether zoomable images are enabled by default
34+ googleAnalytics : string ;
35+ // Whether zoomable images are enabled by default
3436 zoomImages : boolean ;
3537 // Whether CodeHike is enabled
3638 experimentalCodehike : boolean ;
@@ -71,6 +73,8 @@ export interface ConfigWithLocales {
7173 variables : Record < string , string > ;
7274 // Adds Google Tag Manager to your documentation pages.
7375 googleTagManager : string ;
76+ // Adds Google Analytics to your documentation pages.
77+ googleAnalytics : string ;
7478 // Whether zoomable images are enabled by default
7579 zoomImages : boolean ;
7680 // Whether CodeHike is enabled
@@ -119,6 +123,8 @@ export interface OutputConfig {
119123 variables : Record < string , string > ;
120124 // Adds Google Tag Manager to your documentation pages.
121125 googleTagManager : string ;
126+ // Adds Google Analytics to your documentation pages.
127+ googleAnalytics : string ;
122128 // Whether zoomable images are enabled by default
123129 zoomImages : boolean ;
124130 // Whether CodeHike is enabled
@@ -141,6 +147,7 @@ export const defaultConfig: OutputConfig = {
141147 headerDepth : 3 ,
142148 variables : { } ,
143149 googleTagManager : '' ,
150+ googleAnalytics : '' ,
144151 zoomImages : false ,
145152 experimentalCodehike : false ,
146153 experimentalMath : false ,
0 commit comments