-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
47 lines (46 loc) · 1.7 KB
/
Copy pathastro.config.mjs
File metadata and controls
47 lines (46 loc) · 1.7 KB
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
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import starlightThemeNext from 'starlight-theme-next'
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
plugins: [starlightThemeNext()],
customCss: [
// Path to your Tailwind base styles:
'./src/styles/custom.css',
// Paths to Geist variable fonts:
'@fontsource/geist/400.css',
'@fontsource/geist/500.css',
'@fontsource/geist/600.css',
'@fontsource/geist/700.css',
],
title: 'FormWire Docs',
head: [
{
tag: 'script',
attrs: {
defer: true,
src: 'https://formwire-production-umami.cguekn.easypanel.host/script.js',
'data-website-id': '10bb4953-ddcc-456b-b7eb-4421a6e14a23',
},
},
],
editLink: {
baseUrl: 'https://github.com/britzdylan/formwire-docs/edit/main/',
},
social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/britzdylan/formwire-docs' }],
sidebar: [
{ label: 'Getting Started', items: [{ autogenerate: { directory: 'getting-started' } }] },
{ label: 'Guides', items: [{ autogenerate: { directory: 'guides' } }] },
{ label: 'Frameworks', items: [{ autogenerate: { directory: 'frameworks' } }] },
{ label: 'Integrations', items: [{ autogenerate: { directory: 'integrations' } }] },
{ label: 'Billing', items: [{ autogenerate: { directory: 'billing' } }] },
{ label: 'Security & Privacy', slug: 'security-and-privacy' },
{ label: 'FAQ', slug: 'faq' },
],
}),
],
site: "https://docs.formwire.app"
});