29 lines
713 B
JavaScript
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",
|
|
})],
|
|
});
|