From 681cd8c1cc2904c562f9a58db3cbb657d58fb552 Mon Sep 17 00:00:00 2001 From: seth Date: Tue, 16 May 2023 03:53:24 -0400 Subject: feat: rewrite with astro --- astro.config.mjs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 astro.config.mjs (limited to 'astro.config.mjs') diff --git a/astro.config.mjs b/astro.config.mjs new file mode 100644 index 0000000..8b80116 --- /dev/null +++ b/astro.config.mjs @@ -0,0 +1,8 @@ +import { defineConfig } from "astro/config"; +import tailwind from "@astrojs/tailwind"; + +// https://astro.build/config +export default defineConfig({ + site: "https://getchoo.github.io", + integrations: [tailwind()], +}); -- cgit v1.2.3