@apify/docs-theme 1.0.84 → 1.0.85
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 +2 -1
- package/src/config.js +2 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apify/docs-theme",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.85",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"files": [
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"@docusaurus/theme-common": "^2.3.1",
|
|
23
23
|
"axios": "^1.3.1",
|
|
24
24
|
"babel-loader": "^9.1.0",
|
|
25
|
+
"docusaurus-gtm-plugin": "^0.0.2",
|
|
25
26
|
"@stackql/docusaurus-plugin-hubspot": "^1.1.0",
|
|
26
27
|
"prism-react-renderer": "^1.3.5"
|
|
27
28
|
},
|
package/src/config.js
CHANGED
|
@@ -256,18 +256,12 @@ const themeConfig = ({
|
|
|
256
256
|
|
|
257
257
|
const plugins = [
|
|
258
258
|
[
|
|
259
|
-
'
|
|
259
|
+
'docusaurus-gtm-plugin',
|
|
260
260
|
{
|
|
261
|
-
|
|
261
|
+
id: 'GTM-MNGXGGB',
|
|
262
262
|
},
|
|
263
263
|
],
|
|
264
264
|
'@stackql/docusaurus-plugin-hubspot',
|
|
265
|
-
// [
|
|
266
|
-
// 'docusaurus-gtm-plugin',
|
|
267
|
-
// {
|
|
268
|
-
// id: 'GTM-...',
|
|
269
|
-
// },
|
|
270
|
-
// ],
|
|
271
265
|
];
|
|
272
266
|
|
|
273
267
|
module.exports = {
|