24 lines
467 B
JavaScript
24 lines
467 B
JavaScript
// @ts-check
|
|
import { defineConfig } from "astro/config";
|
|
import starlight from "@astrojs/starlight";
|
|
|
|
import react from "@astrojs/react";
|
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [
|
|
starlight({
|
|
title: "My Docs",
|
|
social: {
|
|
github: "https://github.com/withastro/starlight",
|
|
},
|
|
}),
|
|
react(),
|
|
tailwind({
|
|
applyBaseStyles: false,
|
|
}),
|
|
],
|
|
});
|