-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathastro.config.mjs
More file actions
61 lines (60 loc) · 2.1 KB
/
astro.config.mjs
File metadata and controls
61 lines (60 loc) · 2.1 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { defineConfig } from 'astro/config'
import starlight from '@astrojs/starlight'
import starlightLinksValidator from 'starlight-links-validator'
import starlightFullViewMode from 'starlight-fullview-mode'
// https://astro.build/config
export default defineConfig({
site: 'https://paymentpointers.org',
integrations: [
starlight({
title: 'Payment Pointers',
description:
'Payment Pointers are a standardized identifier for payment accounts. In the same way that an email address provides an identifier for a mailbox in the email ecosystem a payment pointer is used by an account holder to share the details of their account with a counter-party.',
head: [
{
tag: 'script',
attrs: {
defer: true,
'data-website-id': 'cab4fd0a-e2db-4666-a974-5b199f0d6d43',
src: 'https://ilf-site-analytics.netlify.app/script.js',
'data-domains': 'paymentpointers.org'
}
}
],
customCss: [
'./node_modules/@interledger/docs-design-system/src/styles/teal-theme.css',
'./node_modules/@interledger/docs-design-system/src/styles/ilf-docs.css'
],
plugins: [starlightLinksValidator(), starlightFullViewMode()],
components: {
Header: './src/components/Header.astro',
PageSidebar: './src/components/PageSidebar.astro'
},
expressiveCode: {
styleOverrides: {
borderColor: 'transparent',
borderRadius: 'var(--border-radius)'
}
},
social: [
{
icon: 'github',
label: 'GitHub',
href: 'https://github.com/interledger/paymentpointers.org'
}
],
sidebar: [
{ label: 'Explainer', link: '/' },
{ label: 'Design Goals', link: '/goals' },
{ label: 'Flow', link: '/flow' },
{ label: 'Syntax and Resolution', link: '/syntax' },
{ label: 'IANA Considerations', link: '/iana' },
{ label: 'Security Considerations', link: '/security' },
{ label: 'About', link: '/about' }
]
})
],
server: {
port: 1102
}
})