Release (#188)
All checks were successful
release-image / build (push) Successful in 31s
release-image / guarddog (push) Successful in 1m2s
release-image / semantic-release (push) Successful in 28s
release-image / release-harbor (push) Has been skipped
release-image / release-gitea (push) Has been skipped

Reviewed-on: #188
This commit was merged in pull request #188.
This commit is contained in:
2026-03-12 21:25:55 +00:00
parent 6161f58468
commit 774eb707a3
15 changed files with 2922 additions and 6498 deletions

View File

@@ -2,10 +2,12 @@
import { defineConfig } from "astro/config";
import node from "@astrojs/node";
import tailwindcss from "@tailwindcss/vite";
import sitemap from '@astrojs/sitemap';
import starlight from "@astrojs/starlight";
import starlightThemeRapide from 'starlight-theme-rapide'
import tailwindcss from '@tailwindcss/vite';
const getSiteURL = () => {
if (process.env.SITE_URL) {
return `https://${process.env.SITE_URL}`;
@@ -13,12 +15,15 @@ const getSiteURL = () => {
return "http://localhost:4321";
};
// https://astro.build/config
export default defineConfig({
site: getSiteURL(),
security: { csp: true },
prefetch: true,
integrations: [
tailwindcss(),
sitemap(),
starlight({
title: "Alex Lebens Docs",
customCss: [
@@ -51,15 +56,21 @@ export default defineConfig({
}),
],
markdown: {
syntaxHighlight: false,
},
plugins: {
"@tailwindcss/postcss": {},
'@tailwindcss/postcss': {},
},
vite: {
plugins: [tailwindcss()],
},
output: 'static',
adapter: node({
mode: "standalone",
mode: 'standalone',
}),
});