initial commit

This commit is contained in:
zackartz 2024-05-05 16:19:04 -04:00
commit 8a8f7c6f62
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
146 changed files with 8471 additions and 0 deletions

11
astro.config.mjs Normal file
View file

@ -0,0 +1,11 @@
import { defineConfig } from "astro/config";
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({
site: "https://zackmyers.io",
integrations: [mdx(), sitemap(), tailwind()],
});