implements basic site structure

and adds deploy script
This commit is contained in:
Dennis Schoepf 2026-02-21 22:47:18 +01:00
parent 5d4cafe8fb
commit c401b1bc03
18 changed files with 951 additions and 29 deletions

View file

@ -1,5 +1,9 @@
// @ts-check
import { defineConfig } from "astro/config";
import icon from "astro-icon";
// https://astro.build/config
export default defineConfig({});
export default defineConfig({
integrations: [icon()]
});