-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
31 lines (30 loc) · 914 Bytes
/
astro.config.mjs
File metadata and controls
31 lines (30 loc) · 914 Bytes
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
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
site: 'https://archetype-pal.github.io',
integrations: [
starlight({
title: 'Archetype',
description:
'A modern, open platform for palaeography research, manuscript description, and IIIF-driven storytelling.',
social: [
{ icon: 'github', label: 'GitHub', href: 'https://github.com/archetype-pal' },
{ icon: 'twitter', label: 'Twitter', href: 'https://twitter.com/DigiPalProject' },
],
customCss: ['./src/styles/theme.css'],
sidebar: [
{
label: 'About Archetype',
items: [
{ label: 'Overview', slug: 'overview' },
{ label: 'Architecture', slug: 'architecture' },
{ label: 'Roadmap', slug: 'roadmap' },
{ label: 'Community', slug: 'community' },
],
},
],
}),
],
});