initial commit

This commit is contained in:
2026-05-24 04:03:42 +02:00
commit c09da15bd0
28 changed files with 5801 additions and 0 deletions

13
landing/astro.config.mjs Normal file
View File

@@ -0,0 +1,13 @@
import { defineConfig } from "astro/config";
// Build writes straight into ../www, which Caddy serves at the apex domain.
// BASE_DOMAIN is baked at build time (default ulicraft.local).
export default defineConfig({
outDir: "../www",
// Wipe ../www on each build so stale assets don't linger.
build: { assets: "_assets" },
vite: {
// Surface BASE_DOMAIN to the build without the PUBLIC_ prefix dance;
// index.astro reads it from process.env directly in frontmatter.
},
});