Add astro.config.mjs from template

This commit is contained in:
jordan 2026-01-29 00:48:34 +00:00
parent 82991407ff
commit 56a8905bf5

7
astro.config.mjs Normal file
View File

@ -0,0 +1,7 @@
import { defineConfig } from 'astro/config';
import tailwind from '@astrojs/tailwind';
export default defineConfig({
integrations: [tailwind()],
output: 'static',
});