From 72f129472044a97ffa06136da0a473581914c7e9 Mon Sep 17 00:00:00 2001 From: IwanIDev Date: Sat, 21 Mar 2026 12:41:49 +0000 Subject: Initial Commit Set up Astro and shadcn/ui --- astro.config.mjs | 13 +++++++++++++ 1 file changed, 13 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..00bde21 --- /dev/null +++ b/astro.config.mjs @@ -0,0 +1,13 @@ +// @ts-check + +import tailwindcss from "@tailwindcss/vite" +import { defineConfig } from "astro/config" +import react from "@astrojs/react" + +// https://astro.build/config +export default defineConfig({ + vite: { + plugins: [tailwindcss()], + }, + integrations: [react()], +}) -- cgit