53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
import starlight from '@astrojs/starlight';
|
|
import sitemap from '@astrojs/sitemap';
|
|
import matomo from "astro-matomo";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: "https://workaround.org",
|
|
integrations: [
|
|
starlight({
|
|
lastUpdated: true,
|
|
title: "ISPmail Guide",
|
|
social: {
|
|
github: "https://github.com/Signum/workaround-astro-starlight",
|
|
},
|
|
// https://expressive-code.com/key-features/word-wrap/#configuration
|
|
components: {
|
|
Footer: "./src/components/Footer.astro",
|
|
},
|
|
customCss: ["./src/styles/custom.css"],
|
|
sidebar: [
|
|
{
|
|
label: "ISPmail for Debian 12",
|
|
// slug: "ispmail-bookworm",
|
|
autogenerate: { directory: "ispmail-bookworm" },
|
|
},
|
|
{
|
|
label: "Misc articles",
|
|
autogenerate: { directory: "articles" },
|
|
},
|
|
],
|
|
logo: {
|
|
light: "./src/assets/logo.svg",
|
|
dark: "./src/assets/logo-dark.svg",
|
|
replacesTitle: true,
|
|
},
|
|
}),
|
|
// https://github.com/felix-berlin/astro-matomo
|
|
matomo({
|
|
enabled: import.meta.env.PROD, // Only load in production
|
|
host: "https://matomo.workaround.org/",
|
|
setCookieDomain: "*.workaround.org",
|
|
trackerUrl: "js/", // defaults to matomo.php
|
|
srcUrl: "js/", // defaults to matomo.js
|
|
siteId: 1,
|
|
heartBeatTimer: 5,
|
|
disableCookies: true,
|
|
debug: false,
|
|
}),
|
|
sitemap(),
|
|
],
|
|
});
|