diff options
| author | IwanIDev <iwan@iwani.dev> | 2026-03-21 12:41:49 +0000 |
|---|---|---|
| committer | IwanIDev <iwan@iwani.dev> | 2026-03-21 12:41:49 +0000 |
| commit | 72f129472044a97ffa06136da0a473581914c7e9 (patch) | |
| tree | de9d0116f8f7da3716917e484efe1ebceb14f267 /astro.config.mjs | |
Initial Commit
Set up Astro and shadcn/ui
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 13 |
1 files changed, 13 insertions, 0 deletions
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()], +}) |
