starlight/astro.config.mjs
2025-03-17 17:16:38 -06:00

29 lines
713 B
JavaScript

import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import tailwind from '@astrojs/tailwind';
import starlight from '@astrojs/starlight';
import starlightThemeBlack from 'starlight-theme-black'
// https://astro.build/config
export default defineConfig({
integrations: [react(), tailwind({
applyBaseStyles: false,
}), starlight({
plugins: [
starlightThemeBlack({
navLinks: [{ // optional
label: 'Docs',
link: '/docs',
}],
footerText: //optional
'Built & designed by [Supported Systems](https://supported.systems)'
})
],
title: "My Website Title",
})],
});