@apify/docs-theme 1.0.77 → 1.0.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/config.js +18 -2
package/package.json
CHANGED
package/src/config.js
CHANGED
|
@@ -78,7 +78,7 @@ const themeConfig = ({
|
|
|
78
78
|
rel: 'dofollow',
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
|
-
html: 'SDK for Python
|
|
81
|
+
html: 'SDK for Python',
|
|
82
82
|
href: `${absoluteUrl}/sdk/python/`, // we need a trailing slash here, we'd get redirected there anyway
|
|
83
83
|
target: '_self',
|
|
84
84
|
rel: 'dofollow',
|
|
@@ -198,7 +198,7 @@ const themeConfig = ({
|
|
|
198
198
|
rel: 'dofollow',
|
|
199
199
|
},
|
|
200
200
|
{
|
|
201
|
-
label: 'SDK for Python
|
|
201
|
+
label: 'SDK for Python',
|
|
202
202
|
href: `${absoluteUrl}/sdk/python/`, // we need a trailing slash here, we'd get redirected there anyway
|
|
203
203
|
target: '_self',
|
|
204
204
|
rel: 'dofollow',
|
|
@@ -249,7 +249,23 @@ const themeConfig = ({
|
|
|
249
249
|
},
|
|
250
250
|
});
|
|
251
251
|
|
|
252
|
+
const plugins = [
|
|
253
|
+
[
|
|
254
|
+
'@docusaurus/plugin-google-gtag',
|
|
255
|
+
{
|
|
256
|
+
trackingID: 'UA-67003981-4',
|
|
257
|
+
},
|
|
258
|
+
],
|
|
259
|
+
// [
|
|
260
|
+
// 'docusaurus-gtm-plugin',
|
|
261
|
+
// {
|
|
262
|
+
// id: 'GTM-...',
|
|
263
|
+
// },
|
|
264
|
+
// ],
|
|
265
|
+
];
|
|
266
|
+
|
|
252
267
|
module.exports = {
|
|
253
268
|
themeConfig,
|
|
269
|
+
plugins,
|
|
254
270
|
absoluteUrl,
|
|
255
271
|
};
|