forked from blankly-finance/blankly-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.js
88 lines (87 loc) · 2.3 KB
/
nuxt.config.js
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import theme from "@nuxt/content-theme-docs";
export default theme({
target: 'static',
docs: {
primaryColor: '#79eea6'
},
tailwindcss: {
configPath: '~~/tailwind.config.js',
},
head: {
title: "Build Trading Algorithms with Blankly | Documentation",
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{
hid: 'description',
name: 'description',
content: 'Blankly makes it extremely easy for you to build and deploy your models at scale, allowing you to write your code once and run it on any exchange. Check out our docs for more examples.'
},
{
hid: 'url',
name: 'url',
content: 'https://docs.blankly.finance',
},
{
hid: 'twitter:title',
name: 'twitter:title',
content: 'Build Quant Models with Blankly | Documentation',
},
{
hid: 'twitter:image',
name: 'twitter:image',
content: 'https://docs.blankly.finance/preview.png',
},
{
hid: 'twitter:description',
name: 'twitter:description',
content:
'Blankly makes it extremely easy for you to build and deploy your models at scale, allowing you to write your code once and run it on any exchange. Check out our docs for more examples.',
},
{
hid: 'twitter:card',
name: 'twitter:card',
content: 'summary_large_image',
},
],
link: [
{ rel: 'stylesheet', href: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css' },
{ rel: 'stylesheet', href: 'https://rsms.me/inter/inter.css' },
{ rel: 'stylesheet', href: '/container.css'}
],
script: [
{
src: "/__/firebase/8.6.8/firebase-app.js",
body: true,
},
{
src: "/__/firebase/8.6.8/firebase-analytics.js",
body: true,
},
{
src: "/__/firebase/init.js",
body: true,
},
{
src: "/analytics_init.js",
body: true,
},
]
},
modules: [
'@nuxtjs/sitemap'
],
sitemap: {
hostname: 'https://docs.blankly.finance'
},
content: {
markdown: {
remarkPlugins: [
'remark-math'
],
rehypePlugins: [
['rehype-katex', { output: 'html' }]
]
}
}
})