boring.tools-poc/apps/website/astro.config.mjs
Lars Hampe fa71d542b9
Some checks failed
Build and Push Docker Image / build (push) Failing after 6s
feat(website): add website placeholder and ci
2024-09-28 14:28:51 +02:00

28 lines
668 B
JavaScript

import starlight from '@astrojs/starlight'
// @ts-check
import { defineConfig } from 'astro/config'
// https://astro.build/config
export default defineConfig({
outDir: '../../build/website',
integrations: [
starlight({
title: 'boring.tools',
social: {
github: 'https://github.com/boring-tools/boring.tools',
},
favicon: '/public/favicon.svg',
sidebar: [
{
label: 'Guides',
items: [{ label: 'Getting started', slug: 'guides/getting-started' }],
},
// {
// label: 'Reference',
// autogenerate: { directory: 'reference' },
// },
],
}),
],
})