Files
Ascently/docs/astro.config.mjs
Atridad Lahiji 79b87a088d
All checks were successful
Ascently - Docs Deploy / build-and-push (push) Successful in 3m53s
Fixed T_T
2025-10-14 11:53:51 -06:00

57 lines
1.3 KiB
JavaScript

// @ts-check
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
import node from "@astrojs/node";
// https://astro.build/config
export default defineConfig({
site: "https://docs.ascently.app",
integrations: [
starlight({
title: "Ascently",
description:
"A FOSS climbing tracking app with offline-first design and optional sync server",
logo: {
light: "./src/assets/logo.svg",
dark: "./src/assets/logo-dark.svg",
},
favicon: "/favicon.png",
social: [
{
icon: "github",
label: "GitHub",
href: "https://git.atri.dad/atridad/Ascently",
},
{
icon: "email",
label: "Contact",
href: "mailto:me@atri.dad",
},
],
sidebar: [
{
label: "Download",
link: "/download/",
},
{
label: "Self-Hosted Sync",
items: [
{ label: "Overview", slug: "sync/overview" },
{ label: "Quick Start", slug: "sync/quick-start" },
],
},
{
label: "Reference",
autogenerate: { directory: "reference" },
},
],
customCss: ["./src/styles/custom.css"],
}),
],
adapter: node({
mode: "standalone",
}),
});