@drop-in/new
Version:
A SvelteKit Svelte 5 PocketBase Starter Kit with a CLI
36 lines (34 loc) • 861 B
JavaScript
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'Drop In',
logo: {
dark: './src/assets/drop-in.svg',
light: './src/assets/drop-in-light.svg',
replacesTitle: true,
},
customCss: ['./src/styles/custom.css'],
editLink: {
baseUrl: 'https://github.com/stolinski/drop-in/edit/docs/',
},
social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/stolinski/drop-in' }],
sidebar: [
{
label: 'Guides',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Get Started', slug: 'guides/get-started' },
],
},
{
label: 'Reference',
autogenerate: { directory: 'reference' },
},
],
}),
],
});