From ec52db5e925c0e98eaf91876dcfd47d3b2267ed4 Mon Sep 17 00:00:00 2001 From: jordan Date: Thu, 29 Jan 2026 08:37:46 +0000 Subject: [PATCH] Add astro.config.mjs from template --- astro.config.mjs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 astro.config.mjs diff --git a/astro.config.mjs b/astro.config.mjs new file mode 100644 index 0000000..50a4e80 --- /dev/null +++ b/astro.config.mjs @@ -0,0 +1,7 @@ +import { defineConfig } from 'astro/config'; +import tailwind from '@astrojs/tailwind'; + +export default defineConfig({ + integrations: [tailwind()], + output: 'static', +});