info_tfgrid/docs_projectinca/astro.config.mjs
2024-06-14 12:30:44 -04:00

28 lines
594 B
JavaScript

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