We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e015e39 commit f64fc39Copy full SHA for f64fc39
2 files changed
spiceaidocs/docusaurus.config.ts
@@ -33,16 +33,6 @@ const config: Config = {
33
locales: ['en'],
34
},
35
36
- headTags: [
37
- {
38
- tagName: 'img',
39
- attributes: {
40
- referrerPolicy: 'no-referrer-when-downgrade',
41
- src: 'https://static.scarf.sh/a.png?x-pxid=d13c8a61-d145-479a-92dc-6a231eddbb3e',
42
- },
43
44
- ],
45
-
46
presets: [
47
[
48
'classic',
spiceaidocs/src/theme/Root.tsx
@@ -0,0 +1,13 @@
1
+import React, { type PropsWithChildren } from "react";
2
+
3
+export default function Root({ children }: PropsWithChildren) {
4
+ return (
5
+ <>
6
+ {children}
7
+ <img
8
+ referrerPolicy="no-referrer-when-downgrade"
9
+ src="https://static.scarf.sh/a.png?x-pxid=d13c8a61-d145-479a-92dc-6a231eddbb3e"
10
+ />
11
+ </>
12
+ );
13
+}
0 commit comments