mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
30 lines
682 B
JavaScript
30 lines
682 B
JavaScript
import starlight from '@astrojs/starlight';
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [
|
|
starlight({
|
|
title: 'My Docs',
|
|
social: {
|
|
github: 'https://github.com/withastro/starlight',
|
|
},
|
|
sidebar: [
|
|
{
|
|
label: 'Guides',
|
|
items: [{ label: 'Example Guide', link: '/guides/example/' }],
|
|
},
|
|
{
|
|
label: 'Reference',
|
|
items: [
|
|
{
|
|
label: 'Example Guide',
|
|
items: [{ label: 'Example Guide', link: '/guides/example/' }],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
}),
|
|
],
|
|
});
|