This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
93 lines (92 loc) · 2.18 KB
/
astro.config.mjs
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
89
90
91
92
93
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import overrideIntegration from "./src/overrideIntegration.mjs";
export default defineConfig({
site: 'https://conceptoai.app',
integrations: [
overrideIntegration(),
starlight({
title: 'Concepto AI',
head: [
{
tag: 'script',
attrs: {
src: 'https://analytics.conceptoai.app/hello.js',
async: true,
defer: true,
},
},
{
tag: 'script',
attrs: {
src: 'https://eu.umami.is/script.js',
async: true,
content: 'c311aadc-0654-4f4a-91ef-52b258ce909f',
},
},
{
tag: 'meta',
attrs: {
name: 'google-site-verification',
content: '8tx08dWFjBU-bY-VH7xm2Ug4ah3oL75_vuU5ORW-gjU',
},
},
{
tag: 'script',
attrs: {
type: 'text',
content: 'window.$crisp=[];window.CRISP_WEBSITE_ID="1009217c-3ca9-4875-8078-cabc010d0f3a";(function(){d=document;s=d.createElement("script");s.src="https://client.crisp.chat/l.js";s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();',
},
},
],
editLink: {
baseUrl: 'https://github.com/leowilkin/concepto-docs/edit/main/',
},
defaultLocale: 'root',
locales: {
root: {
label: 'English',
lang: 'en',
},
},
lastUpdated: true,
favicon: '/favicon.svg',
customCss: [
'./src/styles/custom.css',
],
logo: {
dark: './src/assets/logo-light.svg',
light: './src/assets/logo-dark.svg',
replacesTitle: true,
},
social: {
github: 'https://github.com/concepto-ai',
twitter: 'https://twitter.com/concepto_ai',
},
sidebar: [
{ label: 'Status', link: 'https://status.conceptoai.app' },
{
label: 'About',
autogenerate: { directory: 'about' },
collapsed: true,
},
{
label: 'Self Hosted',
autogenerate: { directory: 'self-hosted' },
collapsed: true,
},
{
label: 'Cloud Hosted',
autogenerate: { directory: 'cloud-hosted' },
badge: 'BETA',
collapsed: true,
},
{
label: 'Policies',
autogenerate: { directory: 'policies' },
collapsed: true,
},
],
}),
],
});