-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathincludedScripts.ts
47 lines (43 loc) · 969 Bytes
/
includedScripts.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**
* Configuration for the site's included scripts.
*
* Used by: docusaurus.config.ts
* Within: config.scripts
*
* Docusaurus technical reference: https://docusaurus.io/docs/api/docusaurus-config#scripts
*/
import type { Config } from '@docusaurus/types';
type ScriptItem = NonNullable<Config['scripts']>[number];
const scripts: ScriptItem[] = [
{
src: "/scripts/apollo.js",
async: true,
nonce: "SIGNALWIRE_DOCS_CSP_NONCE",
},
{
src: "/scripts/koala.js",
async: true,
nonce: "SIGNALWIRE_DOCS_CSP_NONCE",
},
{
src: "/scripts/fullstory.js",
async: true,
nonce: "SIGNALWIRE_DOCS_CSP_NONCE",
},
{
src: "/scripts/munchkin.js",
async: true,
nonce: "SIGNALWIRE_DOCS_CSP_NONCE",
},
{
src: "/scripts/hubspot.js",
async: true,
nonce: "SIGNALWIRE_DOCS_CSP_NONCE",
},
{
src: "/scripts/zoho.js",
async: true,
nonce: "SIGNALWIRE_DOCS_CSP_NONCE",
}
];
export default scripts;