wxbox/site/astro.config.mjs
core 72cb16ac3f
Some checks failed
Verify Latest Dependencies / Verify Latest Dependencies (push) Has been cancelled
build and test / wxbox - latest (push) Has been cancelled
new tiler
2025-04-02 10:17:02 -04:00

28 lines
550 B
JavaScript

// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
site: 'https://weather.ax',
integrations: [
starlight({
title: 'wxbox',
social: {
github: 'https://git.e3t.cc/core/wxbox',
},
sidebar: [
{
label: 'Guides',
items: [
{ label: 'Getting Started', slug: 'guides/getting-started' },
],
},
{
label: 'Reference',
autogenerate: { directory: 'reference' },
},
],
}),
],
});