Initial rewrite

This commit is contained in:
Andras Schmelczer 2026-05-10 19:05:30 +01:00
parent a5f64a3ff8
commit 0d183c8335
200 changed files with 12537 additions and 18659 deletions

18
astro.config.mjs Normal file
View file

@ -0,0 +1,18 @@
import sitemap from '@astrojs/sitemap';
import { defineConfig } from 'astro/config';
export default defineConfig({
site: 'https://schmelczer.dev',
trailingSlash: 'always',
integrations: [
sitemap({
filter: (page) => !new URL(page).pathname.startsWith('/writing/'),
}),
],
markdown: {
shikiConfig: {
theme: 'github-light',
wrap: false,
},
},
});