boring.tools-poc/apps/website/astro.config.mjs
Lars Hampe fad940b517
All checks were successful
Build and Push Docker Image / build (push) Successful in 55s
feat(api): replace astro openapi with hono openapi ui
2024-09-28 22:20:25 +02:00

37 lines
930 B
JavaScript

import starlight from '@astrojs/starlight'
import { defineConfig } from 'astro/config'
export default defineConfig({
outDir: '../../build/website',
integrations: [
starlight({
title: 'boring.tools',
head: [
{
tag: 'script',
attrs: {
src: 'https://umami.hashdot.co/script.js',
'data-website-id': '78b1d598-5783-4bc5-a414-4319fea1876a',
defer: true,
},
},
],
social: {
github: 'https://github.com/boring-tools/boring.tools',
},
favicon: '/favicon.svg',
sidebar: [
{
label: 'Guides',
items: [{ label: 'Getting started', slug: 'guides/getting-started' }],
},
{ label: 'API', link: 'https://api.boring.tools' },
// {
// label: 'Reference',
// autogenerate: { directory: 'reference' },
// },
],
}),
],
})