mirror of
https://github.com/pesde-pkg/pesde.git
synced 2024-12-12 11:00:36 +00:00
110 lines
2 KiB
JavaScript
110 lines
2 KiB
JavaScript
import starlight from "@astrojs/starlight"
|
|
import tailwind from "@astrojs/tailwind"
|
|
import { defineConfig } from "astro/config"
|
|
|
|
import vercel from "@astrojs/vercel/serverless"
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [
|
|
starlight({
|
|
title: "pesde docs",
|
|
social: {
|
|
github: "https://github.com/pesde-pkg/pesde",
|
|
},
|
|
sidebar: [
|
|
{
|
|
label: "Intro",
|
|
items: [{ slug: "" }, { slug: "installation" }, { slug: "quickstart" }],
|
|
},
|
|
{
|
|
label: "Guides",
|
|
autogenerate: { directory: "guides" },
|
|
},
|
|
{
|
|
label: "Reference",
|
|
autogenerate: { directory: "reference" },
|
|
},
|
|
{
|
|
label: "Registry",
|
|
autogenerate: { directory: "registry" },
|
|
},
|
|
],
|
|
components: {
|
|
SiteTitle: "./src/components/SiteTitle.astro",
|
|
},
|
|
customCss: ["./src/tailwind.css", "@fontsource-variable/nunito-sans"],
|
|
favicon: "/favicon.ico",
|
|
head: [
|
|
{
|
|
tag: "meta",
|
|
attrs: {
|
|
name: "theme-color",
|
|
content: "#F19D1E",
|
|
},
|
|
},
|
|
{
|
|
tag: "meta",
|
|
attrs: {
|
|
property: "og:image",
|
|
content: "/favicon-48x48.png",
|
|
},
|
|
},
|
|
{
|
|
tag: "meta",
|
|
attrs: {
|
|
name: "twitter:card",
|
|
content: "summary",
|
|
},
|
|
},
|
|
{
|
|
tag: "link",
|
|
attrs: {
|
|
rel: "icon",
|
|
type: "image/png",
|
|
href: "/favicon-48x48.png",
|
|
sizes: "48x48",
|
|
},
|
|
},
|
|
{
|
|
tag: "link",
|
|
attrs: {
|
|
rel: "icon",
|
|
type: "image/svg+xml",
|
|
href: "/favicon.svg",
|
|
},
|
|
},
|
|
{
|
|
tag: "link",
|
|
attrs: {
|
|
rel: "apple-touch-icon",
|
|
sizes: "180x180",
|
|
href: "/apple-touch-icon.png",
|
|
},
|
|
},
|
|
{
|
|
tag: "meta",
|
|
attrs: {
|
|
name: "apple-mobile-web-app-title",
|
|
content: "pesde docs",
|
|
},
|
|
},
|
|
{
|
|
tag: "link",
|
|
attrs: {
|
|
rel: "manifest",
|
|
href: "/site.webmanifest",
|
|
},
|
|
},
|
|
],
|
|
}),
|
|
tailwind({
|
|
applyBaseStyles: false,
|
|
}),
|
|
],
|
|
vite: {
|
|
envDir: "..",
|
|
},
|
|
output: "hybrid",
|
|
adapter: vercel(),
|
|
})
|