info_tfgrid/docs_projectinca/astro.config.mjs

28 lines
594 B
JavaScript
Raw Normal View History

2024-06-11 04:46:31 +00:00
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
2024-06-14 16:30:44 +00:00
title: 'Project INCA Docs',
2024-06-11 04:46:31 +00:00
social: {
2024-06-14 16:30:44 +00:00
github: 'https://github.com/threefoldtech',
2024-06-11 04:46:31 +00:00
},
sidebar: [
{
2024-06-14 16:30:44 +00:00
label: 'Start Here',
2024-06-11 04:46:31 +00:00
items: [
// Each item here is one entry in the navigation menu.
2024-06-14 16:30:44 +00:00
{ label: 'Getting Started', link: '/start_here/getting_started/' },
2024-06-11 04:46:31 +00:00
],
},
{
label: 'Reference',
autogenerate: { directory: 'reference' },
},
],
}),
],
});